2003-04-29 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / errors / cs0132.cs
1 // cs0132.cs: A static parameter must  not have any parameters
2 // Line: 4
3 class X {
4         static X (int x)
5         {
6         }
7 }