6 lines
172 B
C++
6 lines
172 B
C++
// RUN: %clang_cc1 -std=c++2a -verify %s -code-completion-at=%s:6:16
|
|
// expected-no-diagnostics
|
|
|
|
template <typename T> concept C = true;
|
|
void bar(C auto foo);
|
|
int y = bar( |