diff options
Diffstat (limited to 'test/FixIt/typo-crash.cpp')
-rw-r--r-- | test/FixIt/typo-crash.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/FixIt/typo-crash.cpp b/test/FixIt/typo-crash.cpp index c154e3b..4ea63c5 100644 --- a/test/FixIt/typo-crash.cpp +++ b/test/FixIt/typo-crash.cpp @@ -19,11 +19,12 @@ namespace PR12297 { namespace B { typedef short T; - T global(); // expected-note {{'A::B::global' declared here}} + T global(); // expected-note {{'::PR12297::global' declared here}} } } using namespace A::B; - T A::global(); // expected-error {{out-of-line definition of 'global' does not match any declaration in namespace 'PR12297::A'; did you mean 'A::B::global'?}} + // FIXME: Adding '::PR12297::' is not needed as removing 'A::' is sufficient + T A::global(); // expected-error {{out-of-line declaration of 'global' does not match any declaration in namespace 'PR12297::A'; did you mean '::PR12297::global'?}} } |