aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/using13.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.ns/using13.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.ns/using13.C23
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/using13.C b/gcc/testsuite/g++.old-deja/g++.ns/using13.C
deleted file mode 100644
index c1e96adcc96..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.ns/using13.C
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace A{
- void foo(int){}
-}
-namespace B{
- void foo(bool){}
-}
-
-void bar()
-{
- using B::foo;
- using A::foo;
- foo(true);
-}
-
-namespace Foo {
- template<class N> void Hello(N) {}
-}
-
-int main() {
- using Foo::Hello;
- Hello(4);
- bar();
-}