AMDGPU: Allow f16/bf16 for DS_READ_TR16_B64 gfx950 builtins (#118297)
[llvm-project.git] / flang / test / Semantics / resolve23.f90
blob5bb2691abbe00d281847ee1f5089dfab15df47e3
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 module m
3 type :: t
4 real :: y
5 end type
6 end module
8 use m
9 implicit type(t)(x)
10 z = x%y !OK: x is type(t)
11 !ERROR: 'w' is not an object of derived type; it is implicitly typed
12 z = w%y
13 end