Add missing ctl::string append method

This commit is contained in:
Justine Tunney 2024-10-28 17:52:01 -07:00
parent a120bc7149
commit bd6630d62d
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3 changed files with 16 additions and 1 deletions

View file

@ -404,5 +404,13 @@ main()
}
}
{
String s = "love";
String b;
b.append(s, 1, 2);
if (b != "ov")
return 107;
}
CheckForMemoryLeaks();
}