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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1745.cs
blob
8d3caf0b4dba96d4071a1844eca2603b8d271ee4
1
// CS1745: Cannot specify `System.Runtime.InteropServices.Optional' attribute on optional parameter `u'
2
// Line: 8
3
// Compiler options: -langversion:future
4
5
using
System
.
Runtime
.
InteropServices
;
6
7
public class
C
8
{
9
public static void
Test
([
Optional
]
int
u
=
2
)
10
{
11
}
12
}