mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 23:09:03 -04:00

specifier in legacy code. Patch is reviewed offline by Doug. // rdar://9036633. llvm-svn: 126261
12 lines
175 B
Objective-C
12 lines
175 B
Objective-C
/* RUN: cp %s %t
|
|
RUN: %clang_cc1 -x objective-c -fixit %t
|
|
RUN: %clang_cc1 -x objective-c -Werror %t
|
|
*/
|
|
|
|
// rdar://9036633
|
|
|
|
int main() {
|
|
auto int i = 0;
|
|
return i;
|
|
}
|