Files
swift-mirror/test/Interpreter/builtin_protocol_conversion.swift
2015-12-10 14:56:32 -08:00

8 lines
132 B
Swift

// RUN: %target-run-simple-swift | FileCheck %s
// REQUIRES: executable_test
if true as Boolean {
print("true")
}
// CHECK: true