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-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0214-6.cs
blob
28339dfb426dea6f33917eaefb5e046cb1f77240
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