diff options
author | Martin v. Löwis <loewis@gcc.gnu.org> | 1998-11-21 13:40:51 +0000 |
---|---|---|
committer | Martin v. Löwis <loewis@gcc.gnu.org> | 1998-11-21 13:40:51 +0000 |
commit | da2128796defa22a63ffe387206c9d480910b13a (patch) | |
tree | 3ae36aa8dccf54a66d7d7b4960999d3c78879610 /gcc | |
parent | 161c12b0bf44568bd062d6b9309973bd3901065f (diff) | |
download | gcc-da2128796defa22a63ffe387206c9d480910b13a.zip gcc-da2128796defa22a63ffe387206c9d480910b13a.tar.gz gcc-da2128796defa22a63ffe387206c9d480910b13a.tar.bz2 |
New test case.
From-SVN: r23741
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.ns/using10.C | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/using10.C b/gcc/testsuite/g++.old-deja/g++.ns/using10.C new file mode 100644 index 0000000..cd5cd47 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.ns/using10.C @@ -0,0 +1,9 @@ +//Build don't link: +//Based on a report by Helmut Jarausch <jarausch@IGPM.Rwth-Aachen.DE> +template<class> +class foo{}; + +namespace ABC +{ + using ::foo; +} |