summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0104-2.cs
blob: 9826d82e1c444e581860738eee66a8bbfe2816f8 (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: `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 {
	}
}