mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 10:20:12 +01:00
13 lines
345 B
C#
13 lines
345 B
C#
|
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));
|
||
|
}
|
||
|
}
|