repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git]
/
test
/
TableGen
/
ForwardRef.td
blob
2056b1faff35dcdc2d123a3a3c4fef173847646d
1
// RUN: tblgen %s -o -
2
3
class bar {
4
list<bar> x;
5
}
6
7
class foo;
8
class foo;
9
10
class baz { list<foo> y; }
11
12
class foo {
13
14
}
15