rspec/rules/S2148/compliant.adoc

9 lines
149 B
Plaintext
Raw Normal View History

=== Compliant solution
2020-06-30 12:48:07 +02:00
2022-02-04 17:28:24 +01:00
[source,text]
2020-06-30 12:48:07 +02:00
----
int i = 10_000_000;
int j = 0b01101001_01001101_11100101_01011110;
long l = 0x7fff_ffff_ffff_ffffL;
2022-02-04 17:28:24 +01:00
----