PR c++/79092 - non-type args of different types are different
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / nontype-auto12.C
blob7bff75c3484a8c8bb505e94c67f1fe325ff01d5a
1 // PR c++/79092
2 // { dg-options -std=c++17 }
4 template<auto V> struct val {};
6 struct type : val<0>, val<0u> {};