diff options
Diffstat (limited to 't/t4034/cpp/pre')
-rw-r--r-- | t/t4034/cpp/pre | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/t4034/cpp/pre b/t/t4034/cpp/pre index 1229cdb59d..144cd980d6 100644 --- a/t/t4034/cpp/pre +++ b/t/t4034/cpp/pre @@ -2,15 +2,15 @@ Foo():x(0&&1){ foo0( x.find); } cout<<"Hello World!\n"<<endl; 1 -1e10 0xabcdef 'x' // long double -3.141592653e-10l +3.141'592'653e-10l // float 120E5f // hex -0xdeadbeaf+8ULL +0xdead'beaf+8ULL // octal -01234567 +0123'4567 // binary -0b1000+e1 +0b10'00+e1 // expression 1.5-e+2+f // another one @@ -20,7 +20,7 @@ str.e+65 a*b c/d e%f a+b c-d a<<b c>>d -a<b c<=d e>f g>=h +a<b c<=d e>f g>=h i<=j a==b c!=d a^b c|d e&&f a||b |