1! { dg-do run }
2! { dg-options "-std=gnu -fallow-invalid-boz" }
3! Test the boz handling
4program boz
5
6   implicit none
7
8   integer(1), parameter :: b1 = b'00000001'                         ! { dg-warning "BOZ literal constant" }
9   integer(2), parameter :: b2 = b'0101010110101010'                 ! { dg-warning "BOZ literal constant" }
10   integer(4), parameter :: b4 = b'01110000111100001111000011110000' ! { dg-warning "BOZ literal constant" }
11   integer(8), parameter :: &
12   &  b8 = b'0111000011110000111100001111000011110000111100001111000011110000' ! { dg-warning "BOZ literal constant" }
13
14   integer(1), parameter :: o1 = o'12'                ! { dg-warning "BOZ literal constant" }
15   integer(2), parameter :: o2 = o'4321'              ! { dg-warning "BOZ literal constant" }
16   integer(4), parameter :: o4 = o'43210765'          ! { dg-warning "BOZ literal constant" }
17   integer(8), parameter :: o8 = o'1234567076543210'  ! { dg-warning "BOZ literal constant" }
18
19   integer(1), parameter :: z1 = z'a'                 ! { dg-warning "BOZ literal constant" }
20   integer(2), parameter :: z2 = z'ab'                ! { dg-warning "BOZ literal constant" }
21   integer(4), parameter :: z4 = z'dead'              ! { dg-warning "BOZ literal constant" }
22   integer(8), parameter :: z8 = z'deadbeef'          ! { dg-warning "BOZ literal constant" }
23
24   if (z1 /= 10_1) STOP 1
25   if (z2 /= 171_2) STOP 2
26   if (z4 /= 57005_4) STOP 3
27   if (z8 /= 3735928559_8) STOP 4
28
29   if (b1 /= 1_1) STOP 5
30   if (b2 /= 21930_2) STOP 6
31   if (b4 /= 1894838512_4) STOP 7
32   if (b8 /= 8138269444283625712_8) STOP 8
33
34   if (o1 /= 10_1) STOP 9
35   if (o2 /= 2257_2) STOP 10
36   if (o4 /= 9245173_4) STOP 11
37   if (o8 /= 45954958542472_8) STOP 12
38
39end program boz
40