when emitting an error about a missing } in a compound statement, emit
a "to match this {" note, pointing out the opener.
llvm-svn: 112709
diff --git a/clang/test/SemaObjC/method-no-context.m b/clang/test/SemaObjC/method-no-context.m
index c88205d..3c45bee 100644
--- a/clang/test/SemaObjC/method-no-context.m
+++ b/clang/test/SemaObjC/method-no-context.m
@@ -1,4 +1,5 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
-- im0 { int a; return 0; // expected-error{{missing context for method declaration}}
+- im0 { // expected-note{{to match this '{'}} expected-error{{missing context for method declaration}}
+ int a; return 0;
// expected-error{{expected '}'}}