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
add comment
[mcs.git]
/
tests
/
gtest-119.cs
blob
38beb2b90b90d71fc6391477e289f279d827dfd9
1
// Compiler options: -unsafe
2
using
System
;
3
4
public class
Tests
{
5
6
public unsafe static void
Main
() {
7
Console
.
WriteLine
(
typeof
(
void
).
Name
);
8
Console
.
WriteLine
(
typeof
(
void
*).
Name
);
9
Console
.
WriteLine
(
typeof
(
void
**).
Name
);
10
}
11
}