Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / opt / pr13066-1.C
blob67f8534567633401122c3b68bcbd6e5d7cdcb9f2
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 class nsIURI;
6 struct nsCOMPtr
8   operator nsIURI*() const
9   {
10     return mRawPtr;
11   }
13   nsIURI *mRawPtr;
16 void func()
18   nsCOMPtr u1;
19   if (!u1 == !u1)
20     return;