mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
275 B
Swift
15 lines
275 B
Swift
// RUN: %target-swift-frontend -emit-module -g -experimental-skip-non-inlinable-function-bodies-without-types %s
|
|
|
|
// Just make sure we don't crash.
|
|
|
|
public struct S: ~Copyable {
|
|
private let desc: Int
|
|
|
|
internal init(desc: Int) {
|
|
self.desc = desc
|
|
}
|
|
|
|
deinit {
|
|
}
|
|
}
|