2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs0441.cs
1 // cs0441.cs: 'TestClass': a class cannot be both static and sealed
2 // Line: 4
3
4 public sealed static class TestClass
5 {
6 }