blob: 6db9b4bdaa73d68c69c130ceae29014b7e999dfe [file] [log] [blame]
// Build don't link:
// by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
// Copyright (C) 1999, 2000 Free Software Foundation
class Q {
template<class T>
class X {
};
};
template<template<class> class XX>
class Y {
XX<int> x_; // ERROR - Q::X inaccessible XFAIL *-*-*
};
Y<Q::X> y; // ERROR - instantiated from here XFAIL *-*-*