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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0459-2.cs
blob
6da05782c2acf468952303eca3f3b131ba1bae63
1
// CS0459: Cannot take the address of fixed variable `a'
2
// Line: 10
3
// Compiler options: -unsafe
4
5
class
C
6
{
7
static int
i
;
8
9
public static unsafe void
Test
()
10
{
11
fixed
(
int
*
a
= &
i
) {
12
int
**
x
= &
a
;
13
}
14
}
15
}