1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-19 04:32:19 +00:00
llvm-6502/test/TableGen/AnonDefinitionOnDemand.td
2011-10-06 13:39:59 +00:00

14 lines
236 B
TableGen

// RUN: llvm-tblgen < %s
// XFAIL: vg_leak
class foo<int X> { int THEVAL = X; }
def foo_imp : foo<1>;
def x {
foo Y = foo_imp; // This works.
}
def X {
foo Y = foo<1>; // This should work too, synthesizing a new foo<1>.
}