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

gcs0739.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3be9d1a62a0e9dbb5f66d095d2188584dd6ed947 (plain)
1
2
3
4
5
6
7
8
// CS0739: A duplicate type forward of type `int'
// Line: 8

using System;
using System.Runtime.CompilerServices;

[assembly: TypeForwardedTo(typeof (int))]
[assembly: TypeForwardedTo(typeof (int))]