Sign in
cobalt
/
cobalt
/
3cd5432aaed8f14f27f66ade1b51aa71df939492
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
SemaCXX
/
decltype-pr4444.cpp
blob: a5ac54bc37fea95950a685f9d2ff4754ddd8477d [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
// expected-no-diagnostics
template
<
typename
T
,
T t
>
struct
TestStruct
{
typedef
decltype
(
t
+
2
)
sum_type
;
};