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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1944-3.cs
blob
3a5e310be772c9006ab4bed221f6ec2582ca0a1d
1
// CS1944: An expression tree cannot contain an unsafe pointer operation
2
// Line: 15
3
// Compiler options: -unsafe
4
5
using
System
;
6
using
System
.
Linq
.
Expressions
;
7
8
class
C
9
{
10
unsafe delegate int
D
(
int
*
i
);
11
12
public static void
Main
()
13
{
14
unsafe
{
15
Expression
<
D
>
e
=
p
=> *
p
;
16
}
17
}
18
}