Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gdc.dg / gdc37.d
blob171ace527a0bccde1fd6b9b685edafe11f28a8fc
1 // https://bugzilla.gdcproject.org/show_bug.cgi?id=37
2 // { dg-do compile }
4 struct S37
6 int bar(const S37 s)
8 return 0;
12 int test37()
14 S37 s;
15 return s.bar(s);