brintos

brintos / llvm-project-archived public Read only

0
0
Text · 226 B · a2821c6 Raw
11 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify -triple i686-apple-osx10.7.0 %s2// expected-no-diagnostics3 4#pragma ms_struct on5 6template<int x> struct foo {7  long long a;8  int b;9};10extern int arr[sizeof(foo<0>) == 16 ? 1 : -1];11