blob: 9f27741871484da2ddfe82e5fbc6a5b13ad3e624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// RUN: %clang_cc1 -verify -std=c++20 %s
namespace GH61885 {
void similar() { // expected-note {{'similar' declared here}}
if constexpr (similer<>) {} // expected-error {{use of undeclared identifier 'similer'; did you mean 'similar'?}} \
expected-warning {{address of function 'similar<>' will always evaluate to 'true'}} \
expected-note {{prefix with the address-of operator to silence this warning}}
}
void a() { if constexpr (__adl_swap<>) {}} // expected-error{{use of undeclared identifier '__adl_swap'}}
int AA() { return true;} // expected-note {{'AA' declared here}}
void b() { if constexpr (AAA<>) {}} // expected-error {{use of undeclared identifier 'AAA'; did you mean 'AA'?}} \
expected-warning {{address of function 'AA<>' will always evaluate to 'true'}} \
expected-note {{prefix with the address-of operator to silence this warning}}
}
|