mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
dd65c56c8c
llvm-svn: 194352
8 lines
101 B
TableGen
8 lines
101 B
TableGen
// RUN: llvm-tblgen %s
|
|
|
|
class test<code C> {
|
|
code Code = C;
|
|
}
|
|
|
|
def foo : test<[{ hello world! }]>;
|