aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/verifier/def_allocatable.good
blob: 8c8c7ca202dae1319944b6226a1a489272617225 (plain)
1
2
3
4
5
6
7
8

// Test of types that be be allocated (i.e. are not incomplete etc.)
count a = 5;
int#[2] b = [123, 456];
int#[undefined] var^ c;
any var^ d;
int#[a+1] e = [1,2,3,4,5,6];
int(int) var^ f;