forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscopes.swift
29 lines (24 loc) · 814 Bytes
/
scopes.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// RUN: %target-swift-frontend -g -emit-ir %s | FileCheck %s
class UIViewController {
}
class UISplitViewController : UIViewController {
var delegate : UIViewController?
}
class UIWindow {
var rootViewController: UIViewController?
}
class AppDelegate {
var window: UIWindow?
func application() -> Bool {
// CHECK-DAG: !DILexicalBlock({{.*}}line: [[@LINE+1]], column: 13
if true {
// Verify that all debug line table entries for the expression
// below are in the same scope.
//
// CHECK-DAG: !{{.*}} = !DILocation(line: [[@LINE+2]], column: 46, scope: ![[S:.*]])
// CHECK-DAG: !{{.*}} = !DILocation(line: [[@LINE+1]], column: 11, scope: ![[S]])
let splitViewController = self.window!.rootViewController as! UISplitViewController
}
return true
}
}