// PR c++/84551 // { dg-do compile { target c++17 } } // { dg-options "-fconcepts" } template concept C = true; template requires C class TT> struct A {}; template requires C struct B {}; A a;