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