Files
linux-packaging-mono/mcs/tests/test-463.cs

15 lines
262 B
C#
Raw Normal View History

using System.ComponentModel;
public class PropertySorter : ExpandableObjectConverter {
}
[TypeConverter(typeof(PathItemBase.TypeConverter))]
class PathItemBase {
internal class TypeConverter : PropertySorter {
}
}
class X {
public static void Main () {}
}