tree-optimization/115959 - ICE with SLP condition reduction
[official-gcc.git] / gcc / testsuite / gfortran.dg / byte_1.f90
blobb87034c0a67ef160f90c4e59aac2f3cc4e2f77ae
1 ! { dg-do compile }
2 ! { dg-options " -std=f95" }
3 program testbyte
4 integer(1) :: ii = 7
5 call foo(ii)
6 end program testbyte
8 subroutine foo(ii)
9 integer(1) ii
10 byte b ! { dg-error "BYTE type" }
11 b = ii
12 call bar(ii,b)
13 end subroutine foo
15 subroutine bar(ii,b)
16 integer (1) ii
17 byte b ! { dg-error "BYTE type" }
18 if (b.ne.ii) then
19 ! print *,"Failed"
20 STOP 1
21 end if
22 end subroutine bar