diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/lookup3.C')
-rwxr-xr-x | 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 100755 index 0000000..7be731e --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.jason/lookup3.C @@ -0,0 +1,15 @@ +// [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. +// Build don't link: + +struct A { + typedef long T; +}; + +struct B : public A { }; +struct C : public A { }; + +struct D : public C , public B { + void f (T&); // gets bogus error - ambiguous lookup +}; |