aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.fortran/charset.f90
blob: 15cf36005cbc9df1404bd5916be86735e17cb9e9 (plain)
1
2
3
4
5
6
7
8
9
10
character(kind=1) :: x
character(kind=4) :: c
character(kind=4,len=5) :: str
x = 'j'
c = 4_'k'
str = 4_'lmnop'
! break-here
print *, c
print *, str
end