summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/scoping14.C
blob: d8c19388151ee22ea029653cdabedd1988eb2071 (plain)
1
2
3
4
5
6
7
8
// [class.scope0]: The scope of a name declared in a class consists
// ... also of all ... default arguments ... in that class ....
// Build don't link:

struct A {
  void f (int A::* = &A::i);	
  int i;
};