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
/
ListConversion.td
blob
29b87795bee525e7e69ffa8d77a8a565e5f7b3df
1
// RUN: llvm-tblgen %s
2
// XFAIL: vg_leak
3
class A;
4
class B : A;
5
6
def b : B;
7
8
def {
9
list<B> X = [b];
10
list<A> Y = X;
11
}