The fourteenth batch
[git/gitster.git] / t / t4034 / cpp / pre
bloba1a09b771250e360f80af7e66a3a58ac1014acd7
1 Foo():x(0&&1){ foo0( x.find); }
2 cout<<"Hello World!\n"<<endl;
3 1 -1e10 0xabcdef 'x'
4 // long double
5 3.141592653e-10l
6 // float
7 120E5f
8 // hex
9 0xdead'1eaF+8ULL
10 // octal
11 01234567
12 // binary
13 0b1000+e1
14 // expression
15 1.5-e+2+f
16 // another one
17 str.e+65
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