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

test-796.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b77d98d7290aa96168dd4197bcbb6809df7fe9c8 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Compiler options: -warnaserror -warn:4

// No CS0649 warnings

using System;

struct S
{
}

class C2
{
	S s;
	
	void Foo ()
	{
		Func<string> f = s.ToString;
		Console.WriteLine (f);
	}
}

[Foo (Product = "Mono")]
class Program
{
	S s;
	
	void Test ()
	{
		s.ToString ();
	}
	
	public static void Main ()
	{
		new Program ().Test ();
	}
}

class FooAttribute : Attribute
{
	public string Product;

	public FooAttribute ()
	{
	}
}