1// PR c++/33210
2
3template<int> struct A;
4
5template<template<typename> class B> A<B<int>::x> operator() (); // { dg-error "A<B<int>::x>" }
6