Files
swift-mirror/validation-test/Sema/rdar32204609.swift
2018-08-13 08:32:58 -07:00

13 lines
224 B
Swift

// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: %target-build-swift %s -o %t/a.out
// RUN: %target-codesign %t/a.out
// RUN: %target-run %t/a.out
// REQUIRES: executable_test
let x: Int! = nil
let y: Int! = 1
print(x == y)