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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs8343.cs
blob
b6aa8e83a0904e2d395c9d70d187268be95a6e9e
1
// CS8343: `S': ref structs cannot implement interfaces
2
// Line: 7
3
// Compiler options: -langversion:latest
4
5
using
System
;
6
7
public ref struct
S
:
IDisposable
8
{
9
public void
Dispose
()
10
{
11
}
12
}