Update
[mono.git] / mcs / errors / cs0214-6.cs
1 // cs0214-6.cs: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 12
3
4 using System;
5
6 namespace ConsoleApplication1
7 {
8         class Class1
9         {
10                 static void Main(string[] args)
11                 {
12                         string s = typeof(void *).Name;
13                 }
14         }
15 }
16
17
18
19
20
21