mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
320 B
Swift
13 lines
320 B
Swift
// RUN: %target-run-simple-swift | %FileCheck %s
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
var dict: [String: Any] = ["foo": 0x11111111 as NSNumber]
|
|
print(dict) // succeeds
|
|
// CHECK: ["foo": 286331153]
|
|
dict["foo"] = 0x22222222
|
|
print(dict) // used to crash
|
|
// CHECK: ["foo": 572662306]
|