diff options
Diffstat (limited to 'clang/test/FixIt/typo-crash.cpp')
-rw-r--r-- | clang/test/FixIt/typo-crash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/FixIt/typo-crash.cpp b/clang/test/FixIt/typo-crash.cpp index 0ff160e4482..4ea63c542a8 100644 --- a/clang/test/FixIt/typo-crash.cpp +++ b/clang/test/FixIt/typo-crash.cpp @@ -26,5 +26,5 @@ namespace PR12297 { using namespace A::B; // FIXME: Adding '::PR12297::' is not needed as removing 'A::' is sufficient - T A::global(); // expected-error {{out-of-line definition of 'global' does not match any declaration in namespace 'PR12297::A'; did you mean '::PR12297::global'?}} + 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'?}} } |