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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs8049.cs
blob
e747fdcca9df50e6f6aec901de65183c512bbab9
1
// CS8049: Implemented interfaces cannot have arguments
2
// Line: 6
3
// Compiler options: -langversion:experimental
4
5
using
System
;
6
7
class
ID
() :
IDisposable
()
8
{
9
public void
Dispose
()
10
{
11
}
12
}