Accept non-breaking space characters (Latin-1 '\xa0', UTF-8 '\xc2' '\xa0') in source code, converting them into regular spaces in the cooked character stream when not in character literals.
7 lines
192 B
Fortran
7 lines
192 B
Fortran
! RUN: %flang_fc1 -fsyntax-only %s
|
||
! This line contains the Latin-1 NBSP (non-breaking space) character '\xa0'
|
||
x= 1.
|
||
! This line contains the UTF-8 encoding of NBSP ('\xc2' '\xa0')
|
||
x=Â 1.
|
||
end
|