1
2// Copyright (C) 2004 Free Software Foundation, Inc.
3// Contributed by Nathan Sidwell 1 Apr 2004 <nathan@codesourcery.com>
4// Origin:Matt Austern <austern@apple.com>
5
6// PR:c++/14007
7
8template <typename T> struct X {};  // #1
9template <typename T> struct X<const T>; //#2
10template struct X<int&>; //#3
11