blob: 00d63d0c2fe5c36bc4ce2057f5021ce16b9ed9e8 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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);
}
|