Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / errors / cs1056.cs
1 // CS1056: Unexpected character `$'
2 // Line: 8
3
4 public class C
5 {
6         void Update ()
7         {
8                 int a = $7;
9         }
10 }