[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[mono.git] / mcs / tests / test-348.cs
1 using System;
2
3 public sealed class BoundAttribute : System.Attribute
4 {
5         public BoundAttribute(double min, int i)
6         {
7         }
8 }
9
10 class C
11 {
12     [BoundAttribute (0, 0)]
13         int i;
14
15     [BoundAttribute (3, 3)]
16     double d;
17
18     public static void Main ()
19     {
20     }
21 }