Commit a88b65c2 by Jason Merrill

new

From-SVN: r17533
parent 2290e0ec
extern "C" void abort();
struct A
{
enum { a = 3}* p;
int f() { return (int) a; }
};
int main()
{
A a;
if (a.f() != 3)
abort();
}
struct S { enum en { s0, s1, s2 }; };
template<typename S::en e>
int val( )
{
return e;
}
int main()
{
return val<S::s0>( );
}
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