Run id: 1571

Main.cc: In function 'int main()':
Main.cc:6:13: error: request for member 'b' in 'a', which is of non-class type 'int'
     cout<a.b<</<<c.d<<endl;
             ^
Main.cc:6:16: error: expected primary-expression before '/' token
     cout<<a.b<</<<c.d<<endl;
                ^
Main.cc:6:17: error: expected primary-expression before '<<' token
     cout<<a.b<</<<c.d<<endl;
                 ^
Main.cc:6:21: error: request for member 'd' in 'c', which is of non-class type 'int'
     cout<<a.b<</<<c.d<<endl;
                     ^
Main.cc:5:11: warning: unused variable 'b' [-Wunused-variable]
     int a,b,c,d;
           ^
Main.cc:5:15: warning: unused variable 'd' [-Wunused-variable]
     int a,b,c,d;
               ^