aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/cxx-invalid-using-decl-in-constexpr-crash.cpp
blob: 94fa8c8c820a55e42cac458cfcf7858bbfb603d0 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -verify %s

// issue144264
constexpr void test() 
{ 
    using TT = struct T[; 
    // expected-error@-1 {{expected expression}}
}