diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/lookup3.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.jason/lookup3.C | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/lookup3.C b/gcc/testsuite/g++.old-deja/g++.jason/lookup3.C new file mode 100644 index 000000000..ecef53420 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.jason/lookup3.C @@ -0,0 +1,15 @@ +// { dg-do assemble } +// [class.ambig]: A single function, object, type, or enumerator may be +// reached through more than one path through the DAG of base classes. This +// is not an ambiguity. + +struct A { + typedef long T; +}; + +struct B : public A { }; +struct C : public A { }; + +struct D : public C , public B { + void f (T&); // { dg-bogus "" } ambiguous lookup +}; |