[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / spellcheck-parameter.f90
blob715c5abcce79d432d70d33ce6d0e931d21b72e70
1 ! { dg-do compile }
2 ! Contributed by Joost VandeVondele
3 ! test levenshtein based spelling suggestions for keyword arguments
5 module test
6 contains
7 subroutine mysub(iarg1)
8 integer :: iarg1
9 end subroutine
10 end module
12 use test
13 call mysub(iarg=1) ! { dg-error "Keyword argument .iarg. at .1. is not in the procedure; did you mean .iarg1.\\?" }
15 end