xref: /aosp_15_r20/external/llvm/test/TableGen/2003-08-03-PassCode.td (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1// RUN: llvm-tblgen %s
2
3class test<code C> {
4  code Code = C;
5}
6
7def foo : test<[{ hello world! }]>;
8