2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / defarg15.C
blobfea3deee71c966442ab8200422370f6a011e7855
1 // PR c++/54198
3 template <typename T> void
4 refIfNotNull (T* p1)
6     p1->ref;
8 template <typename T> struct A
10     A (T* p1)
11     {
12         refIfNotNull (p1);
13     }
15 class B;
16 class C
18     void getParent (A <B> = 0);