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

cs0104-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4522444cdf4f8f5db7bc6940f81c682ee7542093 (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
// cs0104-2.cs: `Graphics' is an ambiguous reference between `Gdk.Graphics' and `System.Drawing.Graphics'
// Line: 16

using Gdk;
using System.Drawing;

public class Plot {
	void M ()
	{
		Graphics g;
	}
	
	
	static void Main ()
	{
	}
}


namespace Gdk {
	public class Graphics {
	}
}

namespace System.Drawing {
	public class Graphics {
	}
}