mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
370 B
C#
14 lines
370 B
C#
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;
|
|
} |