repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
decltype-pr4444.cpp
blob
a5ac54bc37fea95950a685f9d2ff4754ddd8477d
1
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2
// expected-no-diagnostics
3
4
template
<
typename T
,
T t
>
5
struct
TestStruct
{
6
typedef decltype
(
t
+
2
)
sum_type
;
7
};