comparison gcc/testsuite/g++.dg/lookup/suggestions1.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // { dg-do compile } 1 // { dg-do compile }
2 2
3 namespace N { namespace M { int foo; } } // { dg-message "N::M::foo" } 3 namespace N { namespace M { int foo; } } // { dg-message "'N::M::foo' declared here" }
4 int f (void) { return N::foo; } // { dg-error "not a member" } 4 int f (void) { return N::foo; } // { dg-error "'foo' is not a member of 'N'; did you mean 'N::M::foo'\\?" }
5 // { dg-message "suggested alternative" "missing namespace" { target *-*-* } .-1 }
6 5
7 int g (void) { return ::foo; } // { dg-error "not been declared" } 6 int g (void) { return ::foo; } // { dg-error "'::foo' has not been declared; did you mean 'N::M::foo'\\?" }
8 // { dg-message "suggested alternative" "omitted namespace" { target *-*-* } .-1 }