/* Test << and >> operators */

var a = 1 << 2;
proc main()
{
    var b;
    b = a >> 3;
}