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
/
cs0591-6.cs
blob
b9a4b2eac6dc2107f7838d2c7a8b11494688c855
1
// CS0591: Invalid value for argument to `System.Runtime.CompilerServices.MethodImplAttribute' attribute
2
// Line: 8
3
4
using
System
.
Runtime
.
CompilerServices
;
5
6
class
Program
7
{
8
[
MethodImpl
((
MethodImplOptions
)
255
)]
9
void
Foo
()
10
{
11
}
12
}