blob: abfe6afcc7cc689715d3acebdf2d1f66ba95597d [file] [log] [blame]
Daniel Dunbarc6cb77f2008-10-23 23:30:52 +00001// RUN: clang -emit-llvm -o %t %s
2
3@protocol P @end
4
5int f0(id<P> d) {
6 return (d != ((void*) 0));
7}