Implement MachineKey.Protect and MachineKey.Unprotect
[mono.git] / mcs / errors / cs7007.cs
1 // CS7007: `X' is not a static class. A using namespace directive can only be applied to static classes or namespace
2 // Line: 5
3 // Compiler options: -langversion:6
4
5 using X;
6
7 class X
8 {
9 }