Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8385.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fa9f794ccf7bd15398033cc3a3f04e6c6447cef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS8385: The given expression cannot be used in a fixed statement
// Line: 9
// Compiler options: -unsafe

unsafe struct S
{
	public void Test ()
	{
		fixed (S* i = null) {
		}
	}
}