2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / nontype-auto10.C
blobec57b5436e78d356db38fbdca0d1820221ada1de
1 // PR c++/80096
2 // { dg-do compile { target c++17 } }
4 template<auto> struct A
6   template<int> struct B {};
7 };
9 A<0> a;