blob: ca4d9f5d136f07f1dd8c60b97b522b7434fe5c1c [file] [log] [blame]
// 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]]>