aboutsummaryrefslogtreecommitdiff
path: root/test/std/language.support/support.types/byteops/lshift.fail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/language.support/support.types/byteops/lshift.fail.cpp')
-rw-r--r--test/std/language.support/support.types/byteops/lshift.fail.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/std/language.support/support.types/byteops/lshift.fail.cpp b/test/std/language.support/support.types/byteops/lshift.fail.cpp
index 707258c6df30..c213935912c2 100644
--- a/test/std/language.support/support.types/byteops/lshift.fail.cpp
+++ b/test/std/language.support/support.types/byteops/lshift.fail.cpp
@@ -18,6 +18,6 @@
// is_integral_v<IntegerType> is true.
int main () {
- constexpr std::byte b1{static_cast<std::byte>(1)};
- constexpr std::byte b2 = b1 << 2.0f;
+ constexpr std::byte b1{static_cast<std::byte>(1)};
+ constexpr std::byte b2 = b1 << 2.0f;
}