﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1547</ErrorName>
  <Examples>
    <string>// CS1547: Keyword 'void' cannot be used in this context
// Line: 7
using System;

class X
{
	static void Main ()
	{
		void a;
	}
}
</string>
    <string>// CS1547: Keyword 'void' cannot be used in this context
// Line: 5

class C {
        public const void val = null;
}</string>
    <string>// CS1547: Keyword 'void' cannot be used in this context
// Line: 9
using System;

class X
{
	static void Main ()
	{
		void[] a;
	}
}
</string>
  </Examples>
</ErrorDocumentation>