summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0677-3.cs
blob: 2949f2a46a7bd08c488c1f07666d4983dabcbc77 (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>
{
	volatile T t;
}