Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / using9.C
bloba2c06a70d9dd58b5610125a76b49e994f6e90afc
1 // { dg-do compile }
3 // Origin: stefaandr@hotmail.com
5 // PR c++/17154: Using declaration in partial class template specialization.
7 template <int numrows, class T> struct A { void test_A() {}; };
8 template <int numrows, class T> struct B {};
9 template <class T> struct B <3, T> : public A <3, T> {
10         using A <3, T>::test_A;
11         void test_B_spec() { test_A(); };