Sign in
ara-mdk
/
platform
/
external
/
clang
/
2cd889d6d97db0cf73930873871aa4a542e84b89
/
.
/
test
/
CXX
/
temp
/
temp.param
/
p5.cpp
blob: 67efc4e48162544e8543a7f4a8d1e9c1f3c55110 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -verify %s -std=c++11
// expected-no-diagnostics
template
<
const
int
I
>
struct
S
{
decltype
(
I
)
n
;
int
&&
r
=
I
;
};
S
<
5
>
s
;
template
<
typename
T
,
T v
>
struct
U
{
decltype
(
v
)
n
;
int
&&
r
=
v
;
};
U
<
const
int
,
6
>
u
;