Files
linux-packaging-mono/mcs/errors/cs1021-2.cs

9 lines
138 B
C#
Raw Normal View History

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