Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_8.f03
blob78f10ebe2bd9f9e389b7ca1ae315ab4c343ce17b
1 ! { dg-do compile }
2 ! Test fixes for PR41618.
4 ! Contributed by Janus Weil <janus@gcc.gnu.org>
6  type t1
7    integer :: comp
8    class(t1),pointer :: cc
9  end type
11  class(t1) :: x ! { dg-error "must be dummy, allocatable or pointer" }
13  x%comp = 3
14  print *,x%comp
16 end