OSDN Git Service

New test case
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.martin / typedef1.C
1 // Build don't link:
2
3 // Copyright (C) 1999 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 31 Mar 1999 <nathan@acm.org>
5
6 // Make sure we see through typedefs.
7
8 typedef int Int;
9
10 void fn()
11 {
12   int *p;
13   Int *&pr2 = p;
14 }