• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: %clang_cc1 %s -fsyntax-only -verify
2
3// id is now builtin. There should be no errors.
4id obj;
5
6@interface Foo
7
8- defaultToId;
9
10@end
11