Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-lambda-19.cs
1 using System;
2
3 public class Crasher
4 {
5         public static void Crash ()
6         {
7                 double [] array = new double [1];
8                 Do (() => {
9                         int col = 1;
10                         array [col] += array [col];
11                 });
12         }
13
14         static void Do (Action action)
15         {
16         }
17
18         public static void Main ()
19         {
20         }
21 }