diff options
Diffstat (limited to 'Tests/CompileFeatures/cxx_digit_separators.cpp')
-rw-r--r-- | Tests/CompileFeatures/cxx_digit_separators.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/CompileFeatures/cxx_digit_separators.cpp b/Tests/CompileFeatures/cxx_digit_separators.cpp index a40ac0a..abcd1c8 100644 --- a/Tests/CompileFeatures/cxx_digit_separators.cpp +++ b/Tests/CompileFeatures/cxx_digit_separators.cpp @@ -1,5 +1,6 @@ int someFunc() { - int one_thousand = 1'000; return one_thousand - 1000; + int one_thousand = 1'000; + return one_thousand - 1000; } |