rspec/rules/S1134/swift/non-compliant-example.adoc

6 lines
164 B
Plaintext
Raw Normal View History

[source,swift]
----
func divide(numerator:Int, denominator:Int) -> Int {
return numerator / denominator // FIXME denominator value might be 0
}
----