blob: d8b0ab96212667724e1e3530afa9045e982906bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS3008: Identifier `System.Error.__ComObject' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1
using System;
[assembly:CLSCompliant(true)]
namespace System.Error {
public class __ComObject : MarshalByRefObject {
private __ComObject ()
{
}
}
}
|