Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / test-463.cs
1 using System.ComponentModel;
2
3 public class PropertySorter : ExpandableObjectConverter {
4 }
5
6 [TypeConverter(typeof(PathItemBase.TypeConverter))]
7 class PathItemBase {
8         internal class TypeConverter : PropertySorter {
9         }
10 }
11
12 class X {
13         static void Main () {}
14 }