forked from OSchip/llvm-project
9 lines
183 B
Mathematica
9 lines
183 B
Mathematica
|
// RUN: clang %s -verify -fsyntax-only
|
||
|
|
||
|
int main() {
|
||
|
const id foo;
|
||
|
[foo bar]; // expected-warning {{method '-bar' not found (return type defaults to 'id')}}
|
||
|
return 0;
|
||
|
}
|
||
|
|