blob: 4d6f1f76d131577d96c255b838b26237d8d6fd30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++23 %s
// expected-no-diagnostics
namespace A {
struct Foo {
static int operator()(int a, int b) { return a + b; }
static int operator[](int a, int b) { return a + b; }
};
void ok() {
// Should pass regardless of const / volatile
Foo foo;
foo(1, 2);
foo[1, 2];
const Foo fooC;
fooC(1, 2);
fooC[1, 2];
const Foo fooV;
fooV(1, 2);
fooV[1, 2];
const volatile Foo fooCV;
fooCV(1, 2);
fooCV[1, 2];
}
}
|