Bump mono/corefx to fix https://github.com/mono/mono/issues/14864
[mono-project.git] / sdks / wasm / debugger-test.cs
blob91ce9079540cb5d8d63baaa3070d807f31ec1e54
1 using System;
3 public class Math { //Only append content to this class as the test suite depends on line info
4 public static int IntAdd (int a, int b) {
5 int c = a + b;
6 int d = c + b;
7 int e = d + a;
8 int f = 0;
9 return e;
12 public static int UseComplex () {
13 var complex = new Simple.Complex (10, "xx");
14 var res = complex.DoStuff ();
15 return res;