diff options
Diffstat (limited to 'gcc_arm/testsuite/g++.old-deja/g++.pt/t37a.C')
-rwxr-xr-x | gcc_arm/testsuite/g++.old-deja/g++.pt/t37a.C | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc_arm/testsuite/g++.old-deja/g++.pt/t37a.C b/gcc_arm/testsuite/g++.old-deja/g++.pt/t37a.C new file mode 100755 index 0000000..797b78d --- /dev/null +++ b/gcc_arm/testsuite/g++.old-deja/g++.pt/t37a.C @@ -0,0 +1,18 @@ +// Build don't link: + +class A { +public: + A(int); + A(float); + ~A(); +}; + +A::A(float f) { +} + +A::A(int i) { +} + +A::~A() { +} + |