| 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 | }; |
| 8 |
| 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 | }; |
| 8 |