Sign in
cobalt
/
cobalt
/
a3dd835b53c74ec0f3e791c01fbcde33bbf26c6d
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
SemaTemplate
/
member-inclass-init-value-dependent.cpp
blob: 5bff7f2095795b70c06a356894f5da9967493287 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm-only %s
// PR10290
template
<
int
Flags
>
struct
foo
{
int
value
=
Flags
&&
0
;
};
void
test
()
{
foo
<
4
>
bar
;
}
struct
S
{
S
(
int
n
);
};
template
<typename>
struct
T
{
S s
=
0
;
};
T
<int>
t
;