[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / partial-spec3.C
blob2ac5b9818e5fc4db7297aacae6c24154f12b2cb6
1 // { dg-options "-std=c++17 -fconcepts" }
3 template <class T> struct A { };
4 template <class T> requires false struct A<T*> { };
5 template <class T> struct A<T*> { static int i; };
7 int i = A<int*>::i;