Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8343.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6aa8e83a0904e2d395c9d70d187268be95a6e9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS8343: `S': ref structs cannot implement interfaces
// Line: 7
// Compiler options: -langversion:latest

using System;

public ref struct S : IDisposable
{
	public void Dispose ()
	{			
	}
}