-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
public type: RefasmerTestAssembly.StructWithNestedPrivateTypes | ||
fields: | ||
- PrivateField: RefasmerTestAssembly.StructWithNestedPrivateTypes/NestedPrivateStruct | ||
types: | ||
private type: RefasmerTestAssembly.StructWithNestedPrivateTypes/NestedPrivateStruct | ||
fields: | ||
- Field: System.Int32 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
type: RefasmerTestAssembly.UnsafeClassWithFunctionPointer | ||
public type: RefasmerTestAssembly.UnsafeClassWithFunctionPointer | ||
methods: | ||
- MethodWithFunctionPointer(method System.Void *() functionPointer): System.Void: | ||
- .ctor(): System.Void: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace RefasmerTestAssembly; | ||
|
||
public struct StructWithNestedPrivateTypes | ||
{ | ||
private struct NestedPrivateStruct | ||
{ | ||
private int Field; | ||
Check warning on line 7 in tests/RefasmerTestAssembly/StructWithNestedPrivateTypes.cs GitHub Actions / main
Check warning on line 7 in tests/RefasmerTestAssembly/StructWithNestedPrivateTypes.cs GitHub Actions / main
Check warning on line 7 in tests/RefasmerTestAssembly/StructWithNestedPrivateTypes.cs GitHub Actions / main
|
||
} | ||
|
||
private NestedPrivateStruct PrivateField; | ||
Check warning on line 10 in tests/RefasmerTestAssembly/StructWithNestedPrivateTypes.cs GitHub Actions / main
Check warning on line 10 in tests/RefasmerTestAssembly/StructWithNestedPrivateTypes.cs GitHub Actions / main
Check warning on line 10 in tests/RefasmerTestAssembly/StructWithNestedPrivateTypes.cs GitHub Actions / main
|
||
} |