From: Kaelyn Uhrain Date: Thu, 19 Apr 2012 23:26:12 +0000 (+0000) Subject: Re-add the closing '}' for the namespace I accidentally deleted when X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e77b65b4819bc7a809245b12bd00450b4924025;p=clang Re-add the closing '}' for the namespace I accidentally deleted when removing a (new) duplicate test whose only difference was the tag type being an enum instead of a struct. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155165 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/FixIt/fixit.cpp b/test/FixIt/fixit.cpp index afa71c6f3d..ac1fb6397f 100644 --- a/test/FixIt/fixit.cpp +++ b/test/FixIt/fixit.cpp @@ -216,3 +216,4 @@ class Foo { Bar bar_; // expected-error {{must use 'enum' tag to refer to type 'Bar' in this scope}} }; void Foo::SetBar(Bar bar) { bar_ = bar; } // expected-error {{must use 'enum' tag to refer to type 'Bar' in this scope}} +}