Merge pull request #3549 from lewurm/arm64-icache-big-little-fix
[mono.git] / mcs / errors / cs0023-10.cs
1 // CS0023: The `+' operator cannot be applied to operand of type `X'
2 // Line : 6
3
4 class X {
5     static X x;
6     static object o = +x;
7 }