80f1e629f61154e9fef5d0c70e50bbe21231f0a8
[mono.git] / mcs / errors / cs0103-14.cs
1 // C0103: The name `s' does not exist in the current context
2 // Line: 7
3
4 class Test(string s)
5 {
6         public Test ()
7                 : this (s)
8         {
9         }
10 }