cleol
[mcs.git] / tests / gtest-lambda-19.cs
blob8b5601458441309d2815015c28c8086e12c5050d
1 using System;
3 public class Crasher
5 public static void Crash ()
7 double [] array = new double [1];
8 Do (() => {
9 int col = 1;
10 array [col] += array [col];
11 });
14 static void Do (Action action)
18 public static void Main ()