blob: f282645e5cd1d53ddcf263de142fb30054317e59 (
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))]
|