ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git] / gcc / testsuite / g++.dg / template / inherit5.C
blobcd22f5b10c9c38f354cbe8008e3156bdda3b996b
1 struct A
3   template<int> void foo();
4 };
6 template<int N> struct B : A
8   B() { foo<N>(); }
9 };
11 B<0> b;