repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-331.cs
blob
444da7d60e23231db90f330ed7bcb8ef2097fcda
1
// Compiler options: -unsafe
2
3
class
T
4
{
5
unsafe private byte
*
ptr
;
6
unsafe internal byte
*
Ptr
{
7
get
{ return ptr; }
8
set
{ ptr = value; }
9
}
10
11
public static void
Main
() {}
12
}