fix_replace

This commit is contained in:
leonlau 2019-06-28 23:17:54 +08:00 committed by Alexander Medvednikov
parent b6b313d246
commit b0bc53730c
2 changed files with 3 additions and 1 deletions

View file

@ -165,6 +165,8 @@ fn test_replace() {
assert b.replace('B', '') == 'onetwothree'
b = '**char'
assert b.replace('*char', 'byteptr') == '*byteptr'
mut c :='abc'
assert c.replace('','-') == c
}
fn test_itoa() {