We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88b2b07 commit edaaeb1Copy full SHA for edaaeb1
clang/test/Sema/types.c
@@ -12,16 +12,16 @@ typedef int *S[2];
12
restrict S y; // expected-warning {{'restrict' qualifier on an array of pointers is a C23 extension}}
13
14
// int128_t is available.
15
-int a(void) {
+void a(void) {
16
__int128_t s;
17
__uint128_t t;
18
-} // expected-warning {{non-void function does not return a value}}
+}
19
20
// but not a keyword
21
-int b(void) {
+void b(void) {
22
int __int128_t;
23
int __uint128_t;
24
25
26
// __int128 is a keyword
27
int c(void) {
0 commit comments