mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
253 B
Swift
14 lines
253 B
Swift
// RUN: not %target-swift-frontend -emit-sil %s
|
|
// REQUIRES: OS=ios
|
|
|
|
import UIKit
|
|
|
|
// https://github.com/apple/swift/issues/52548
|
|
// Just make sure we don't crash.
|
|
|
|
class Foo: NSObject {
|
|
func crash() {
|
|
let kp = \AnyObject.accessibilityFrame
|
|
}
|
|
}
|