diff options
Diffstat (limited to 'test/SemaCXX/attr-unavailable.cpp')
-rw-r--r-- | test/SemaCXX/attr-unavailable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/attr-unavailable.cpp b/test/SemaCXX/attr-unavailable.cpp index fe3e8b1..5f34ed9 100644 --- a/test/SemaCXX/attr-unavailable.cpp +++ b/test/SemaCXX/attr-unavailable.cpp @@ -25,6 +25,6 @@ namespace radar9046492 { void foo() FOO; // expected-note {{candidate function has been explicitly made unavailable}} void bar() { - foo(); // expected-error {{call to unavailable function 'foo' not available - replaced}} + foo(); // expected-error {{call to unavailable function 'foo': not available - replaced}} } } |