1 /* { dg-lto-do run } */ 2 3 struct bar {int x;}; 4 extern struct bar foo(void); main()5 int main() 6 { 7 struct bar x=foo(); 8 return 0; 9 } 10 11