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