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

cs0244.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8dc4a7b1fb6cc5c9100b3175de31ccab43e0f3b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0244.cs: "is" or "as" are not valid on pointer types
// Line: 7
// Compiler options: -unsafe

class UnsafeClass {
        unsafe UnsafeClass (int* pointer) {
                if (pointer is string) {}
        }
}