File: error_stop1b.f90

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,696 kB
  • sloc: cpp: 7,438,781; ansic: 1,393,871; asm: 1,012,926; python: 241,771; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 8,596; ml: 5,082; perl: 4,730; makefile: 3,591; awk: 3,523; javascript: 2,251; xml: 892; fortran: 672
file content (43 lines) | stat: -rw-r--r-- 1,529 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
! RUN: %python %S/test_errors.py %s %flang_fc1
! This test checks for semantic errors in error stop statements based on the
! statement specification in section 11.4 of the Fortran 2018 standard.
! The errors in this test would be hidden by the errors in
! the test error_stop01a.f90 if they were included in that file,
! and are thus tested here.

program test_error_stop
  implicit none

  integer int_code, int_array(1), int_coarray[*], array_coarray(1)[*]
  integer(kind=1) non_default_int_kind
  character(len=128) char_code, char_array(1), char_coarray[*], non_logical
  character(kind=4, len=128) non_default_char_kind
  logical bool, logical_array(1), logical_coarray[*], non_integer, non_character

  !___ non-standard-conforming statements _________________________

  !ERROR: Stop code must be of INTEGER or CHARACTER type
  error stop non_integer

  !ERROR: Stop code must be of INTEGER or CHARACTER type
  error stop non_character

  !ERROR: INTEGER stop code must be of default kind
  error stop non_default_int_kind

  !ERROR: CHARACTER stop code must be of default kind
  error stop non_default_char_kind

  !ERROR: Must be a scalar value, but is a rank-1 array
  error stop char_array

  !ERROR: Must be a scalar value, but is a rank-1 array
  error stop array_coarray[1]

  !ERROR: Must have LOGICAL type, but is CHARACTER(KIND=1,LEN=128_8)
  error stop int_code, quiet=non_logical

  !ERROR: Must be a scalar value, but is a rank-1 array
  error stop int_code, quiet=logical_array

end program test_error_stop