#!/usr/local/bin/rune -x # # Used to help test the code generator output import "sys"; int A; int B; int C = 4; int D; int X; ldouble E; int main(int ac, char **av) { int a; int b; global int cccc = 4; # this crashes - should fail with an error ('a' is not accessible # to initializers for the global space) #global int dddd = cccc + a; global int eeee = cccc; int d; ldouble x; # dddd = 5; eeee = 5; if (x < 0.0X) x = -x; return 0; }