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

gcs0677.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 190ab8093ea283d5f10ed36408397fb22f0ca4b4 (plain)
1
2
3
4
5
6
7
// CS0677: `C<T>.t': A volatile field cannot be of the type `T'
// Line: 8

public class C<T>  where T : struct
{
	volatile T t;
}