[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0104-2.cs
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 }