Files
swift-mirror/test/Interpreter/SDK/objc_unowned.swift
2016-08-10 23:52:02 -07:00

13 lines
252 B
Swift

// RUN: %target-run-simple-swift | %FileCheck %s
// REQUIRES: executable_test
// REQUIRES: objc_interop
import Foundation
let x = NSObject()
unowned let y = x
print(y) // CHECK: <NSObject: [[ID:.*]]>
print(x) // CHECK-NEXT: <NSObject: [[ID]]>