aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/cxx-concepts-ambig-constraint-expr.cpp
blob: 4dcd9937f265059667df26a7d75a77ea319f2495 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -std=c++2a -x c++ %s -verify

// Test parsing of constraint-expressions in cases where the grammar is
// ambiguous with the expectation that the longest token sequence which matches
// the syntax is consumed without backtracking.

// type-specifier-seq in conversion-type-id
template <typename T> requires T::operator short
unsigned int foo(); // expected-error {{a type specifier is required for all declarations}}