Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0040-rdar23899799-broken-bool.swift
Michael Gottesman a047bb7564 Revert "Fix the build."
This reverts commit dc24c2bd34.

Turns out Chris fixed the build but when I was looking at the bots, his fix had
not been tested yet, so I thought the tree was still red and was trying to
revert to green.
2016-07-17 16:29:18 -07:00

6 lines
125 B
Swift

// RUN: %target-swift-frontend %s -emit-silgen
// rdar://23899799
let sol1 = { $1 ? "Dr. " + $0 : $0 }
sol1("Seuss", true)