Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x
      2 
      3 template<typename T, T t>
      4 struct TestStruct {
      5    typedef decltype(t+2) sum_type;
      6 };
      7