1 // PR c++/79092
2 // { dg-options -std=c++17 }
3 
4 template<auto V> struct val {};
5 
6 struct type : val<0>, val<0u> {};
7