summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3001-1.cs
blob: 643f33e97968b624ace3dfe2a8142fde9dddaa9a (plain)
1
2
3
4
5
6
7
8
// CS3001: Argument type `ulong' is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant (true)]

public delegate long MyDelegate (ulong arg);