<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1021</ErrorName>
  <Examples>
    <string>// CS1021: Integral constant is too large
// Line: 6

class X {
	public static void Main() {
		int h = 0b11111111111111111111111111111111111111111111111111111111111111111;
	}
}
</string>
    <string>// CS1021: Integral constant is too large
// Line: 6

class X {
	public static void Main() {
		int i = 123821738792178327198;
	}
}
</string>
    <string>// CS1021: Integral constant is too large
// Line: 4

#line 1238217387921783271985
</string>
    <string>// CS1021: Integral constant is too large
// Line: 6

class X {
	public static void Main() {
		int h = 0xffffffffffffffffffffffffff;
	}
}
</string>
  </Examples>
</ErrorDocumentation>