[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs0201.cs
1 // CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2 // Line: 11
3
4 using System;
5
6 public class X
7 {
8         public static void Main ()
9         {
10                 2 * 3;
11         }
12 }