1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00

Fixed 'this' regression in unary operation on base properties

This commit is contained in:
Brian Fiete 2022-06-11 05:46:48 -07:00
parent 4f978c5053
commit ae84564fca
2 changed files with 14 additions and 3 deletions

View file

@ -28,6 +28,10 @@ namespace Tests
Test.Assert(wStr[2] == 's');
Test.Assert(wStr[3] == 't');
Test.Assert(wStr[4] == '\0');
StringView sv = "Abcd";
sv.Length--;
Test.Assert(sv == "Abc");
}
}
}