repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0104-2.cs
blob
4522444cdf4f8f5db7bc6940f81c682ee7542093
1
// cs0104-2.cs: `Graphics' is an ambiguous reference between `Gdk.Graphics' and `System.Drawing.Graphics'
2
// Line: 16
3
4
using
Gdk
;
5
using
System
.
Drawing
;
6
7
public class
Plot
{
8
void
M
()
9
{
10
Graphics g
;
11
}
12
13
14
static void
Main
()
15
{
16
}
17
}
18
19
20
namespace
Gdk
{
21
public class
Graphics
{
22
}
23
}
24
25
namespace
System
.
Drawing
{
26
public class
Graphics
{
27
}
28
}