<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0193</ErrorName>
  <Examples>
    <string>// CS0193: The * or -&gt; operator must be applied to a pointer
// Line: 9
// Compiler options: -unsafe

unsafe class X {
	static void Main ()
	{
		int a = 0;
		if (*a == 0)
			return;
	}
}
</string>
    <string>// CS0193: The * or -&gt; operator must be applied to a pointer
// Line: 10
// Compiler options: -unsafe

class C
{
	unsafe static void Foo (object o)
	{
		bool x = false;
		if (o is bool ? *x : null) {
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>