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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0306-2.cs
blob
0101a64f81698b6e342fac99adeddb48e17f1881
1
// CS0306: The type `int*' may not be used as a type argument
2
// Line: 11
3
// Compiler options: -unsafe
4
5
using
System
.
Linq
;
6
7
public class
C
8
{
9
public static unsafe void
Main
()
10
{
11
var
e
=
from int
*
a
in
"aaa"
12
select
a
;
13
}
14
}