1! { dg-do compile }
2!
3! Check that nonexisting character kinds are not rejected by the compiler
4!
5  character(kind=selected_char_kind("")) :: s1 ! { dg-error "is not supported for CHARACTER" }
6  character(kind=selected_char_kind("     ")) :: s2 ! { dg-error "is not supported for CHARACTER" }
7  character(kind=selected_char_kind("asciii")) :: s3 ! { dg-error "is not supported for CHARACTER" }
8  character(kind=selected_char_kind("I don't exist")) :: s4 ! { dg-error "is not supported for CHARACTER" }
9
10  print *, selected_char_kind() ! { dg-error "Missing actual argument" }
11  print *, selected_char_kind(12) ! { dg-error "must be CHARACTER" }
12  print *, selected_char_kind(["foo", "bar"]) ! { dg-error "must be a scalar" }
13
14end
15