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-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1944.cs
blob
5b5668a24a8811754c5e394384655fc14d76d4c5
1
// CS1944: An expression tree cannot contain an unsafe pointer operation
2
// Line: 14
3
// Compiler options: -unsafe
4
5
using
System
;
6
using
System
.
Linq
.
Expressions
;
7
8
class
C
9
{
10
public static void
Main
()
11
{
12
unsafe
{
13
int
*[]
p
=
null
;
14
Expression
<
Func
<
int
>>
e6
= () => (
int
)
p
[
10
];
15
}
16
}
17
}