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
/
cs1738-2.cs
blob
cd6838c375458a9c9c2641556be046aac8b1bd75
1
// CS1738: Named arguments must appear after the positional arguments
2
// Line: 13
3
// Compiler options: -langversion:future
4
5
using
System
;
6
7
class
MyAttribute
:
Attribute
8
{
9
public
MyAttribute
(
string
s
,
int value
)
10
{
11
}
12
}
13
14
[
MyAttribute
(
s
:
"a"
,
1
)]
15
class
C
16
{
17
}