8fc30896db
Former-commit-id: c477e03582759447177c6d4bf412cd2355aad476
9 lines
177 B
C#
9 lines
177 B
C#
// CS1021: Integral constant is too large
|
|
// Line: 6
|
|
|
|
class X {
|
|
public static void Main() {
|
|
int h = 0b11111111111111111111111111111111111111111111111111111111111111111;
|
|
}
|
|
}
|