blob: 2c58b921767513693f431dd60f4f289227da43e2 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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}