mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
15 lines
440 B
Plaintext
15 lines
440 B
Plaintext
// TODO: Test needs to be enabled when .NET 7 is used as the runtime.
|
|
namespace structassembly;
|
|
|
|
public class MyEmptyClass { }
|
|
|
|
public ref struct RefStruct
|
|
{
|
|
public int MyInt;
|
|
public ref byte MyByte;
|
|
public ref object MyObject;
|
|
internal ref MyEmptyClass MyEmptyClass;
|
|
public ref readonly byte MyReadonlyByte;
|
|
public readonly ref object MyReadonlyObject;
|
|
public readonly ref readonly string MyReadonlyString;
|
|
} |