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