repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[flang][cuda] Adapt ExternalNameConversion to work in gpu module (#117039)
[llvm-project.git]
/
clang
/
test
/
AST
/
ByteCode
/
comma.cpp
blob
795958e90b09214533a102c96c24a14d1dcc0913
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// RUN: %clang_cc1 -fsyntax-only -verify %s -fexperimental-new-constant-interpreter
3
// expected-no-diagnostics
4
5
// PR6076
6
void
f
();
7
void
(&
g
)() = (
void
(),
f
);
8
9
int
a
[
1
];
10
int
(&
b
)[
1
] = (
void
(),
a
);