<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8094</ErrorName>
  <Examples>
    <string>// CS8094: Alignment value has a magnitude greater than 32767 and may result in a large formatted string
// Line: 9
// Compiler options: -warnaserror

class Program
{
	static void Main ()
	{
		var s = $"{1, int.MaxValue }";
	}
}</string>
    <string>// CS8094: Alignment value has a magnitude greater than 32767 and may result in a large formatted string
// Line: 9
// Compiler options: -warnaserror

class Program
{
	static void Main ()
	{
		var s = $"{1, int.MinValue }";
	}
}</string>
  </Examples>
</ErrorDocumentation>