mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
c0018fd1a6
llvm-svn: 21341
11 lines
148 B
TableGen
11 lines
148 B
TableGen
// RUN: tblgen %s
|
|
|
|
// Make sure there is no collision between XX and XX.
|
|
def S;
|
|
|
|
class Before<int XX>;
|
|
class After : Before<4> {
|
|
dag XX = (S);
|
|
}
|
|
|