forked from OSchip/llvm-project
8 lines
96 B
TableGen
8 lines
96 B
TableGen
|
// RUN: tblgen %s
|
||
|
|
||
|
class test<code C> {
|
||
|
code Code = C;
|
||
|
}
|
||
|
|
||
|
def foo : test<[{ hello world! }]>;
|