1// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2// expected-no-diagnostics
3
4template<typename T, T t>
5struct TestStruct {
6   typedef decltype(t+2) sum_type;
7};
8