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

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

class FooAttribute : Attribute
{

	public FooAttribute (string f)
	{
	}
}

[Foo (Bar)]
class Test
{

	const string Bar = "Bar";
}

class Program
{

	public static void Main ()
	{
	}
}