repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
llvm
/
test
/
TableGen
/
SuperSubclassSameName.td
blob
643b380ca0055341d686f56ce5b768d50eaf0c91
1
// RUN: llvm-tblgen < %s
2
// XFAIL: vg_leak
3
// Test for template arguments that have the same name as superclass template
4
// arguments.
5
6
7
class Arg { int a; }
8
def TheArg : Arg { let a = 1; }
9
10
11
class Super<Arg F> {
12
int X = F.a;
13
}
14
class Sub<Arg F> : Super<F>;
15
def inst : Sub<TheArg>;
16
17
18
class Super2<int F> {
19
int X = F;
20
}
21
class Sub2<int F> : Super2<F>;