Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-348.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91424bd702835e7d329d277f0a88c911e7131c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

public sealed class BoundAttribute : System.Attribute
{
	public BoundAttribute(double min, int i)
	{
	}
}

class C
{
    [BoundAttribute (0, 0)]
	int i;

    [BoundAttribute (3, 3)]
    double d;

    public static void Main ()
    {
    }
}