Flush (work in progress)
[mono.git] / mcs / errors / cs1546.cs
1 // CS1546: Property or event `Test.ITopic.Title' is not supported by the C# language
2 // Line: 9
3 // Compiler options: -r:CS1546-lib.dll
4
5 using Test;
6
7 class C {               
8         public C (ITopic it) {
9                 string i = it.Title (2, 3);
10         }
11 }