mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-17 01:10:11 +00:00
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! }]>;
|