Files
swift-mirror/test/Interpreter/builtin_protocol_conversion.swift

6 lines
108 B
Swift

// RUN: %target-run-simple-swift | FileCheck %s
if true as BooleanType {
println("true")
}
// CHECK: true