From: Chris Lattner Date: Thu, 23 May 2002 18:27:08 +0000 (+0000) Subject: New testcase X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1ab854aa1e21c308c05597ead78bb4dce84a7462;p=oota-llvm.git New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2735 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2002-05-23-TypeNameCollision.c b/test/CFrontend/2002-05-23-TypeNameCollision.c new file mode 100644 index 00000000000..49d92806051 --- /dev/null +++ b/test/CFrontend/2002-05-23-TypeNameCollision.c @@ -0,0 +1,9 @@ +/* Testcase for when struct tag conflicts with typedef name... grr */ + +typedef struct foo { + struct foo *X; + int Y; +} * foo; + +foo F; +