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