brintos

brintos / llvm-project-archived public Read only

0
0
Text · 175 B · 5a9f6f4 Raw
8 lines · cpp
1// RUN: %clang_cc1 -std=c++20 -verify %s2// expected-no-diagnostics3struct s {4    template<typename T>5          requires requires(T x) { x.g(); }6      friend void f(T);7};8