Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0031-6.cs
blob731a777df2dae1c952b37769716217ced2a00140
1 // cs0031-6.cs: 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;