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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1729-4.cs
blob
3dbebd6535e6266730d0eab8209d20bededf4c59
1
// CS1729: The type `IgnoreAttribute' does not contain a constructor that takes `0' arguments
2
// Line: 14
3
4
using
System
;
5
6
public class
IgnoreAttribute
:
Attribute
{
7
8
public
IgnoreAttribute
(
String name
)
{ }
9
}
10
11
class
C
{
12
13
[
Ignore
]
14
public void
Method
()
15
{
16
}
17
}