A variable should be assigned a value before being used.
module fly; int i; int j = i; endmodule
module fly; int i = 1; int j = i; endmodule