Merge pull request #5675 from mono/glib-debug-symbols
[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         public static void Main () {}
14 }