repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0104-2.cs
blob
9826d82e1c444e581860738eee66a8bbfe2816f8
1
// CS0104: `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
}