summaryrefslogtreecommitdiff
path: root/release_23/test/TableGen/strconcat.td
blob: cdf3928f04d659ec270789830896b84ab2e6c836 (plain)
1
2
3
4
5
6
7
// RUN: tblgen %s | grep fufoo

class Y<string S> {
  string T = !strconcat(S, "foo");
}

def Z : Y<"fu">;