mirror of https://github.com/icsharpcode/ILSpy.git
Browse Source
```cs
public ref struct TestRef(ref int a)
{
public ref int AAA = ref a;
public void Print()
{
int val = AAA;
Console.WriteLine(val);
}
}
```
pull/3598/head
1 changed files with 4 additions and 14 deletions
Loading…
Reference in new issue