diff options
Diffstat (limited to 'gcc_arm/testsuite/g++.old-deja/g++.other/cvt1.C')
-rwxr-xr-x | gcc_arm/testsuite/g++.old-deja/g++.other/cvt1.C | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc_arm/testsuite/g++.old-deja/g++.other/cvt1.C b/gcc_arm/testsuite/g++.old-deja/g++.other/cvt1.C new file mode 100755 index 0000000..f448cc1 --- /dev/null +++ b/gcc_arm/testsuite/g++.old-deja/g++.other/cvt1.C @@ -0,0 +1,23 @@ +// Build don't link: + +typedef int Array_T[2]; + +struct S1 { + S1(const Array_T&); +}; + +struct S2 { + S1 g(); + Array_T a; +}; + +S1 S2::g() +{ + return S1(a); +} + +void h() +{ + S2 s2; + s2.g(); +} |