1// { dg-do assemble  }
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
8typedef int Int;
9
10void fn()
11{
12  int *p;
13  Int *&pr2 = p;
14}
15