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

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59772 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-11-21 01:05:35 +00:00
Родитель 966f099f90
Коммит c41c1235e0
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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