remove expected-error from #if 0 section of code.

llvm-svn: 59772
This commit is contained in:
Chris Lattner 2008-11-21 01:05:35 +00:00
parent 4d7c58f0eb
commit 66c8bebe81
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ int bar() // expected-error {{redefinition of 'bar'}}
} }
#if 0 #if 0
int foobar(int); // expected-error {{previous declaration is here}} int foobar(int); // error {{previous declaration is here}}
int foobar() // expected-error {{conflicting types for 'foobar'}} int foobar() // error {{conflicting types for 'foobar'}}
{ {
return 0; return 0;
} }