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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-119.cs
blob
d3cc47c45aa5c3a436277d7608ae7ef93fb592b7
1
// Compiler options: -unsafe
2
using
System
;
3
4
public class
Tests
{
5
6
unsafe public static void
Main
() {
7
Console
.
WriteLine
(
typeof
(
void
).
Name
);
8
Console
.
WriteLine
(
typeof
(
void
*).
Name
);
9
Console
.
WriteLine
(
typeof
(
void
**).
Name
);
10
}
11
}