blob: c41beb0f0c04b1370b0fe425c7df86f7d5a8f604 [file] [log] [blame]
// { dg-do assemble }
// { dg-prune-output "note" }
// Adapted from testcase by Corey Kosak <kosak@cs.cmu.edu>
template<class T>
struct moo_t {
struct cow_t {};
};
template<class T> void foo(typename moo_t<T>::cow_t) {}
template<class T> void foo(moo_t<T>) {
typename moo_t<T>::cow_t p;
foo(p); // { dg-bogus "" "" { xfail *-*-* } } - no matching function for call -
}
int main() {
moo_t<int> x;
foo(x); // { dg-bogus "" "" { xfail *-*-* } } - required from here -
}