Files
swift-mirror/test/Interpreter/dictOfAny.swift
2017-05-03 08:06:12 -07:00

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]