merged Sys.Web.Services 2.0 support in my branch:
[mono.git] / mcs / errors / cs0266-9.cs
1 // cs0023: Operator `~' cannot be applied to operand of type `ulong'\r
2 // Line : 6\r
3 \r
4 enum E1 { A }\r
5 enum E2 { A }\r
6 \r
7 class X {\r
8     const E1 e = ~E2.A;\r
9 }\r
10 \r
11 \r
12 \r