Commit 0078ab63 by Mark Mitchell

New test

From-SVN: r22067
parent c296fce5
// Build don't link:
// Special g++ Options:
// crash test - XFAIL
class Pooled
{
};
class RefCounted
{
};
class BrickExpressionBase : public RefCounted, public Pooled
{
};
template<unsigned Dim, class LHS, class RHS, class OP>
class BrickExpression : public BrickExpressionBase
{
};
template <unsigned Dim, class T>
void f()
{
typedef BrickExpression<Dim, T, T, T> ExprT;
ExprT(3).apply;
}
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