mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 03:30:22 +00:00
14 lines
240 B
TableGen
14 lines
240 B
TableGen
|
// RUN tblgen %s | FileCheck %s
|
||
|
|
||
|
// RUN: tblgen %s | grep {foo} | count 1
|
||
|
|
||
|
class Base<string t> {
|
||
|
string text = t;
|
||
|
}
|
||
|
|
||
|
class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
|
||
|
|
||
|
def FOO : Derived<[["foo"]]>;
|
||
|
|
||
|
// CHECK: text = "foo"
|