mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-27 06:35:30 +00:00
ac9196093e
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21339 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
136 B
TableGen
10 lines
136 B
TableGen
// tblgen %s
|
|
|
|
// Make sure there is no collision between XX and XX.
|
|
|
|
class Before<int XX>;
|
|
class After : Before<4> {
|
|
dag XX = (S);
|
|
}
|
|
|