[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0031-6.cs
blob1ad5834ad93483680d59e75e04c96005f5f830ef
1 // CS0031: Constant value `999999999999999' cannot be converted to a `int'
2 // Line: 9
4 class X
6 public static void Main ()
8 int i = 3;
9 i += 999999999999999;