We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c6d8f commit e24a925Copy full SHA for e24a925
src/tests/string/test_string_operator.f90
@@ -103,9 +103,11 @@ subroutine test_concat
103
104
a = "a"
105
b = "b"
106
- call check("a" // b == "ab")
107
- call check( a // "b" == "ab")
108
- call check( a // b == "ab")
+ call check( "a" // b == "ab" )
+ call check( a // "b" == "ab" )
+ call check( a // b == "ab" )
109
+ call check( a // "" == "a" )
110
+ call check( "" // b == "b" )
111
end subroutine test_concat
112
113
end module test_string_operator
0 commit comments