summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3009-2.cs
blob: d389c9141b0c3eabfa69942ec7e733552fa12a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS3009: `CLSClass': base type `System.Runtime.Serialization.Formatter' is not CLS-compliant
// Line: 10
// Compiler options: -warnaserror -warn:1

using System;
using System.Runtime.Serialization;

[assembly:CLSCompliant (true)]

public abstract class CLSClass: Formatter {
}