// Test problems with declarations and subsequent use

// Undeclared variable
a;
A;

// Assignment to wrong type
var b, B;
b ={1};
B = 1;

// Invalid function calls
b();
B();

// Invalid use of function
function f1() println"f1 called"; return 0; end; 
f1+f1;