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.

llvm-svn: 155165
This commit is contained in:
Kaelyn Uhrain 2012-04-19 23:26:12 +00:00
parent 32e62f1fd5
commit d783617c25
1 changed files with 1 additions and 0 deletions

View File

@ -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}}
}