xref
: /
llvm-project-15.0.7
/
clang
/
test
/
Import
/
array-init-loop-expr
/
Inputs
/
S.cpp
(revision c5a20b51)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
class
S
{
2
int
a
[
10
];
3
};
4
5
void
f
() {
6
S
s
;
7
S
copy
=
s
;
8
}
9