Files
swift-mirror/test/refactoring/LongNumber/Outputs/Float.expected
Xi Ge 53585a5e70 Refactoring: Implement a refactoring action to simplify long number literal format. SR-5746
For instance, converting from "100000" to "100_000", and "1000.0001" to
"1_000.000_1".
2017-08-31 14:25:48 -07:00

8 lines
83 B
Plaintext

func foo() {
_ = 1234567
_ = 1_234_567.123_45
_ = +1234567
_ = -1234567
}