mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Applied the upgrade script from r236120 (LLVM) and r236121 (CFE). This is the final step of rdar://problem/20434113. Swift SVN r27925
10 lines
291 B
Swift
10 lines
291 B
Swift
// RUN: %target-swift-frontend -primary-file %s -emit-ir -g -o - | FileCheck %s
|
|
|
|
// FIXME: This is more of a crash test than anything else.
|
|
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Tree",{{.*}} line: [[@LINE+1]]
|
|
class Tree<T> {
|
|
var l, r: Tree<T>?
|
|
}
|
|
|
|
var T : Tree<Int>
|