OSDN Git Service

DR 49, 100
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / ptrmem8.C
1 // { dg-do compile }
2 // Origin: <marco dot franzen at bigfoot dot com> 
3 // PR c++/10126: Handle ptmf default conversions while matching a template 
4 //  argument
5
6 struct B 
7 {
8   int I () const;
9   int I ();
10 };
11
12 struct D : B {};
13
14 template <int (D::*fun)() const> int Get();
15
16 int main () 
17 {
18   Get<&B::I>();   // { dg-error "" }
19   Get<&D::I>();   // { dg-error "" }
20 }