Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / deduct7.C
blob99f96966c700207d2f64186d6265c4911f322c61
1 // { dg-do run  }
2 // Copyright (C) 2001 Free Software Foundation, Inc.
3 // Contributed by Jason Merrill 14 Jun 2001 <jason@redhat.com>
5 // Test that deduction can add cv-quals to a pointer-to-member type.
7 struct A;
8 int A::* pi;
10 template <typename T> void f (const T A::*) {}
12 int main ()
14   f (pi);