userdiff-cpp: back out the digit-separators in numbers
[git/debian.git] / t / t4034 / cpp / post
blobf1b6f3c22854b0520c78ca2bc27457b04cdeb9a8
1 Foo() : x(0&42) { bar(x.Find); }
2 cout<<"Hello World?\n"<<endl;
3 (1 +1e10 0xabcdef) '2'
4 // long double
5 3.141592654e+10l
6 // float
7 120E6f
8 // hex
9 0xdeaf'1eaf+7ULL
10 // octal
11 01234560
12 // binary
13 0b1100+e1
14 // expression
15 1.5-e+3+f
16 // another one
17 str.e+75
18 [a] b->*v d.*e
19 ~!a !~b c+ d- e**f g&&h
20 a*=b c/=d e%=f
21 a++b c--d
22 a<<=b c>>=d
23 a<=b c<d e>=f g>h i<=>j
24 a!=b c=d
25 a^=b c|=d e&=f
26 a|b
27 a?:b
28 a==b c+d e-f g*h i/j k%l m<<n o>>p q&r s^t u|v
29 a,b
30 a:b