<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0242</ErrorName>
  <Examples>
    <string>// CS0242: The operation in question is undefined on void pointers
// Line: 10
// Compiler options: -unsafe

unsafe class C
{
	public static void Main ()
    {
		void* v = null;
		int b = *v is string;
    }
}
</string>
    <string>// CS0242: The operation in question is undefined on void pointers
// Line: 11
// Compiler options: -unsafe

using System;

unsafe class ZZ {
	static void Main () {
		void *p = null;

		if (p [10] == 4)
			return;
	}
}

</string>
  </Examples>
</ErrorDocumentation>