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:
parent
4f978c5053
commit
ae84564fca
2 changed files with 14 additions and 3 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue