a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
338 B
C#
29 lines
338 B
C#
// 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 {
|
|
}
|
|
}
|