summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/cxx11/data/templateGreaterGreater.1.cpp
blob: c07d0a0e4fbd69036b0e9cc5b08dc54201f47ea7 (plain)
1
2
3
4
5
6
7
8
9
10
template <class i, int j = 1>
class Y {};
template <int i>
class X {};

Y<X<6>, 7> x;
Y<X<1>> y;
X< (1 >> 2) > z;
auto a = static_cast<X<1>>(X<1>());