2005-07-13 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / cs0571-2.cs
1 // cs0571-2.cs: `System.Reflection.MemberInfo.Name.get': cannot explicitly call operator or accessor
2 using System;
3
4 public class EntryPoint {
5         public static void Main () {
6                 Type type = typeof(string);
7                 Console.WriteLine (type.get_Name());
8         }
9 }