mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
24 lines
317 B
Swift
24 lines
317 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
// REQUIRES: executable_test
|
|
|
|
class HeapBuf<Element> {}
|
|
|
|
struct XBuffer {
|
|
var _storage: HeapBuf<()>
|
|
}
|
|
|
|
class Q {}
|
|
|
|
func hexAddr(x: AnyObject) -> Q {
|
|
return Q()
|
|
}
|
|
|
|
func crash() {
|
|
hexAddr(XBuffer(_storage: HeapBuf<()>())._storage)
|
|
}
|
|
|
|
crash()
|
|
|
|
// CHECK: ok
|
|
print("ok")
|