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