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