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

cs0214-16.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d4a66405634931a45e77d74f1365358ee021d64 (plain)
1
2
3
4
5
6
7
8
9
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
// Line: 8 

public class G<T> {}

abstract class A
{
	public abstract G<int*[]> Foo1 ();
}