diff options
Diffstat (limited to 'test/SemaCXX/alignof-sizeof-reference.cpp')
-rw-r--r-- | test/SemaCXX/alignof-sizeof-reference.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/SemaCXX/alignof-sizeof-reference.cpp b/test/SemaCXX/alignof-sizeof-reference.cpp index 93ba203ae1..1d65abbcc9 100644 --- a/test/SemaCXX/alignof-sizeof-reference.cpp +++ b/test/SemaCXX/alignof-sizeof-reference.cpp @@ -8,14 +8,14 @@ void test() { static_assert(sizeof(r) == 1, "bad size"); } -void f(); // expected-note{{candidate function}} -void f(int); // expected-note{{candidate function}} +void f(); // expected-note{{possible target for call}} +void f(int); // expected-note{{possible target for call}} void g() { - sizeof(&f); // expected-error{{cannot resolve overloaded function 'f' from context}} + sizeof(&f); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}} } -template<typename T> void f_template(); // expected-note{{candidate function}} -template<typename T> void f_template(T*); // expected-note{{candidate function}} +template<typename T> void f_template(); // expected-note{{possible target for call}} +template<typename T> void f_template(T*); // expected-note{{possible target for call}} void rdar9659191() { - (void)alignof(f_template<int>); // expected-error{{cannot resolve overloaded function 'f_template' from context}} + (void)alignof(f_template<int>); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}} } |