(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
selected_char_kind_3.f90
! { dg-do compile }
! { dg-options "-std=f95 -pedantic -Wall -Wno-intrinsics-std" }
!
! Check that SELECTED_CHAR_KIND is rejected with -std=f95
!
  implicit none
  character(kind=selected_char_kind("ascii")) :: s ! { dg-error "has no IMPLICIT type" }
  s = "" ! { dg-error "has no IMPLICIT type" }
  print *, s
end