brintos

brintos / llvm-project-archived public Read only

0
0
Text · 167 B · a5ac54b Raw
8 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++112// expected-no-diagnostics3 4template<typename T, T t>5struct TestStruct {6   typedef decltype(t+2) sum_type;7};8