2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs1546.cs
1 // cs1546.cs: Property `Title' is not supported by the C# language. Try to call the accessor method `Test.ITopic.get_Title(int, int)' directly
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 }