<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8385</ErrorName>
  <Examples>
    <string>// CS8385: The given expression cannot be used in a fixed statement
// Line: 9
// Compiler options: -unsafe

unsafe class C
{
	public static void Main ()
	{
		fixed (void* f = Main)
		{
		}
	}
}
</string>
    <string>// 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) {
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>