[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0020.cs
blob4e0431f7c0fd450c0240537dffb3ae05ca6bbda8
1 // CS0020: Division by constant zero
2 // Line: 9
4 using System;
6 public class X {
7 static void Main ()
9 int i = 1 / 0;
10 Console.WriteLine (i);