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-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0227-2.cs
blob
1599c16b4f3535e8d8161da584cd305cd00102c4
1
// cs0227-2.cs: Unsafe code requires the `unsafe' command line option to be specified
2
// Line: 5
3
4
class
UnsafeClass
{
5
UnsafeClass
()
6
{
7
unsafe
{}
8
}
9
}