1 ! RUN: %S/test_errors.sh %s %t %flang_fc1
3 ! Test SELECT TYPE and ASSOCIATE errors: C1103
6 class(*),allocatable
:: calc
[:]
7 integer,save :: icoa
[*]
8 !ERROR: Selector must not be a coindexed object
9 associate(sel
=>icoa
[2])
12 allocate(integer::calc
[*])
13 !ERROR: Selector must not be a coindexed object
14 select
type(sel
=>calc
[2])