[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs8173.cs
blob7c7d894ad6e43ff067db9a5f9dd0843cf6f1dff0
1 // CS8173: The expression must be of type `long' because it is being assigned by reference
2 // Line: 11
4 public class X
6 int field;
8 public static void Main ()
10 int i = 5;
11 ref long j = ref i;