Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
0218068cbbb2e98164431653d76587e5b8bb9c38
/
.
/
test
/
SemaTemplate
/
instantiate-sizeof.cpp
blob: 00d63d0c2fe5c36bc4ce2057f5021ce16b9ed9e8 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
// Make sure we handle contexts correctly with sizeof
template
<
typename
T
>
void
f
(
T n
)
{
int
buffer
[
n
];
[]
{
int
x
=
sizeof
(
sizeof
(
buffer
));
}();
}
int
main
()
{
f
<int>
(
1
);
}