[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / test-847.cs
blob2f22c4224997b0ca6adbe1d1275f25f9bcc14363
1 using System;
2 using System.Collections.Generic;
4 interface IA
6 int this[int arg] { get; set; }
9 interface I : IA
13 class C
15 public static int Main ()
17 var attrs = typeof (I).GetCustomAttributes (false);
19 // No DefaultMemberAttribute needed
20 if (attrs.Length != 0)
21 return 1;
23 return 0;