mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
299 B
Swift
13 lines
299 B
Swift
// RUN: %target-swift-frontend -typecheck -primary-file %s %S/Inputs/issue-53324a.swift %S/Inputs/issue-53324b.swift
|
|
|
|
// https://github.com/apple/swift/issues/53324
|
|
// Crash involving multiple files
|
|
|
|
class Holder {
|
|
@IntWrapper(defaultValue: 100) var int: Int
|
|
}
|
|
|
|
func main() {
|
|
let h = Holder()
|
|
}
|