rcl/golden/error/std_string_remove_suffix.test
2024-03-02 00:16:31 +01:00

14 lines
289 B
Text

"ab".remove_suffix("c")
# output:
stdin:1:20
1 │ "ab".remove_suffix("c")
╵ ^~~
Error: Cannot remove this suffix. "ab" does not end with "c".
stdin:1:19
1 │ "ab".remove_suffix("c")
╵ ^
In call to method 'String.remove_suffix'.