servicepoint/crates/servicepoint_binding_cs/ServicePoint.Tests/BitVecTests.cs

13 lines
345 B
C#
Raw Normal View History

namespace ServicePoint.Tests;
public class BitVecTests
{
[Fact]
public void UseAfterFree()
{
var bitvec = new BitVec(8);
_ = Command.BitmapLinear(0, bitvec, CompressionCode.Uncompressed);
Assert.Throws<NullReferenceException>(() => _ = Command.BitmapLinear(0, bitvec, CompressionCode.Uncompressed));
}
}