mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
78a1609fa2
llvm-svn: 141294
9 lines
119 B
TableGen
9 lines
119 B
TableGen
// RUN: llvm-tblgen %s
|
|
// XFAIL: vg_leak
|
|
|
|
class test<code C> {
|
|
code Code = C;
|
|
}
|
|
|
|
def foo : test<[{ hello world! }]>;
|