This website requires JavaScript.
Explore
Mirrors
Help
Sign In
6502
/
llvm-6502
Watch
1
Star
0
Fork
0
You've already forked llvm-6502
mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced
2024-11-05 13:09:10 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
c088ae8b84
llvm-6502
/
test
/
TableGen
/
ForwardRef.td
16 lines
121 B
TableGen
Raw
Normal View
History
Unescape
Escape
Check that we can refer to the same class we are defining. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23541 91177308-0d34-0410-b5e6-96231b3b80d8
2005-09-30 04:10:17 +00:00
// RUN: tblgen %s -o -
class
bar
{
list
<
bar
>
x
;
}
Add a test that you can forward ref a class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23547 91177308-0d34-0410-b5e6-96231b3b80d8
2005-09-30 04:52:43 +00:00
class
foo
;
class
foo
;
class
baz
{
list
<
foo
>
y
;
}
class
foo
{
}
Reference in New Issue
Copy Permalink