[bcl] Update BCL Linked Size
[mono-project.git] / mcs / tests / test-485.cs
blob7892fb6b540bff0304bc35d2e8e98854d792a541
1 // Compiler options: -checked
3 using System;
5 public class MonoBUG
7 public static int Main ()
9 long l = long.MaxValue;
11 try {
12 l *= 2;
13 return 1;
14 } catch (OverflowException) {
17 return 0;