blob: b781b891ffb7868f82a6fc0a1281872c10a71a89 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Anders Carlsson87471f52009-06-26 03:02:18 +00003
4template< typename T, T t, decltype(t+2) v >
5struct Convoluted {};
6
7int test_array[5];
8
9Convoluted< int *, test_array, nullptr > tarray;