Files
swift-mirror/test/Interpreter/SDK/objc_unowned.swift
Graham Batty 83b4384fac Update test flags for linux failures and support.
Also removed the sdk 'feature' in favour of the more specific
objc_interop.

Swift SVN r24856
2015-01-30 21:31:48 +00:00

12 lines
226 B
Swift

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