New test case suggested by Nathan Sidwell <nathan@acm.org>

From-SVN: r26078
This commit is contained in:
Martin v. Löwis 1999-03-31 06:08:41 +00:00
parent d1c7c49566
commit baa5df30bb
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// Build don't link:
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 31 Mar 1999 <nathan@acm.org>
// Make sure we see through typedefs.
typedef int Int;
void fn()
{
int *p;
Int *&pr2 = p;
}