Commit 19df1edf by Mark Mitchell Committed by Mark Mitchell

re PR c++/9727 (ICE in pushclass() with template and conversion operator)

	PR c++/9727
	* g++.dg/template/op1.C: New test.

From-SVN: r63245
parent a93d1ba2
2003-02-21 Mark Mitchell <mark@codesourcery.com>
PR c++/9727
* g++.dg/template/op1.C: New test.
2003-02-21 Mark Mitchell <mark@codesourcery.com>
PR c++/8906
* g++.dg/template/nested2.C: New test.
......
template <class T> struct X {
typedef int type;
};
template <class T> struct O {
struct I {
operator typename X<T>::type ();
};
};
template <class T>
O<T>::I::operator typename X<T>::type () {}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment