Files
swift-mirror/test/refactoring/LongNumber/Outputs/NegativeInteger.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
82 B
Plaintext

func foo() {
_ = 1234567
_ = 1234567.12345
_ = +1234567
_ = -1_234_567
}