* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs0133.cs
1 // cs0133.cs: the expression being assigned to `x' must be constant
2 // Line: 6
3 class X {
4         X (int arg)
5         {
6                 const int x = arg;
7         }
8 }