Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[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 }