libstdc++: Fix tests for std::vector range operations
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / debug1.C
blob43af4191a48dbd81641c5987cd7668e0ac232b6c
1 // PR c++/84551
2 // { dg-do compile { target c++17 } }
3 // { dg-options "-fconcepts" }
5 template<typename> concept C = true;
7 template<template<typename T> requires C<T> class TT> struct A {};
9 template<typename U> requires C<U> struct B {};
11 A<B> a;