<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0078</ErrorName>
  <Examples>
    <string>// cs0078.cs: The `l' suffix is easily confused with the digit `1' (use `L' for clarity)
// Line: 12
// Compiler options: -warnaserror -warn:4

using System;

class ErrorCS0078 {
	public static void Main () {
		long a = 1l;
	}
}

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