OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / deduct7.C
1 // { dg-do run  }
2 // Copyright (C) 2001 Free Software Foundation, Inc.
3 // Contributed by Jason Merrill 14 Jun 2001 <jason@redhat.com>
4
5 // Test that deduction can add cv-quals to a pointer-to-member type.
6
7 struct A;
8 int A::* pi;
9
10 template <typename T> void f (const T A::*) {}
11
12 int main ()
13 {
14   f (pi);
15 }