aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-friend9.C
blob: 09054d23d5d05b9f0382683152e3e8908d4dd83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/105064
// { dg-do compile { target c++20 } }

struct A {
  template<class T>
  friend void f(T) requires true;
};

struct B {
  template<class T>
  friend void f(T) requires true;
};