// RUN: %target-typecheck-verify-swift // REQUIRES: objc_interop class C {} func unsafePointerInitEphemeralConversions() { var c = C() var optC: C? _ = AutoreleasingUnsafeMutablePointer(&c) // expected-warning {{initialization of 'AutoreleasingUnsafeMutablePointer' results in a dangling pointer}} // expected-note@-1 {{implicit argument conversion from 'C' to 'AutoreleasingUnsafeMutablePointer' produces a pointer valid only for the duration of the call to 'init(_:)'}} _ = AutoreleasingUnsafeMutablePointer(&c) // expected-warning {{initialization of 'AutoreleasingUnsafeMutablePointer' results in a dangling pointer}} // expected-note@-1 {{implicit argument conversion from 'C' to 'UnsafeMutablePointer' produces a pointer valid only for the duration of the call to 'init(_:)'}} // expected-note@-2 {{use 'withUnsafeMutablePointer' in order to explicitly convert argument to pointer valid for a defined scope}} _ = AutoreleasingUnsafeMutablePointer(&optC) // expected-warning {{initialization of 'AutoreleasingUnsafeMutablePointer' results in a dangling pointer}} // expected-note@-1 {{implicit argument conversion from 'C?' to 'AutoreleasingUnsafeMutablePointer' produces a pointer valid only for the duration of the call to 'init(_:)'}} _ = AutoreleasingUnsafeMutablePointer(&optC) // expected-warning {{initialization of 'AutoreleasingUnsafeMutablePointer' results in a dangling pointer}} // expected-note@-1 {{implicit argument conversion from 'C?' to 'UnsafeMutablePointer' produces a pointer valid only for the duration of the call to 'init(_:)'}} // expected-note@-2 {{use 'withUnsafeMutablePointer' in order to explicitly convert argument to pointer valid for a defined scope}} _ = AutoreleasingUnsafeMutablePointer(&optC) // expected-warning {{initialization of 'AutoreleasingUnsafeMutablePointer' results in a dangling pointer}} // expected-note@-1 {{implicit argument conversion from 'C?' to 'UnsafeMutablePointer' produces a pointer valid only for the duration of the call to 'init(_:)'}} // expected-note@-2 {{use 'withUnsafeMutablePointer' in order to explicitly convert argument to pointer valid for a defined scope}} _ = AutoreleasingUnsafeMutablePointer(&optC) // expected-warning {{initialization of 'AutoreleasingUnsafeMutablePointer' results in a dangling pointer}} // expected-note@-1 {{implicit argument conversion from 'C?' to 'UnsafeMutablePointer' produces a pointer valid only for the duration of the call to 'init(_:)'}} // expected-note@-2 {{use 'withUnsafeMutablePointer' in order to explicitly convert argument to pointer valid for a defined scope}} }