summaryrefslogtreecommitdiff
path: root/mcs/errors/CS3005-16-lib.cs
blob: ae55419fd88315b140804e2d9cbb460a2a03b05f (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
[assembly: CLSCompliantAttribute (true)]

public class CLSClass_A {
	[CLSCompliantAttribute(true)]
	virtual public bool Universal {
            get {
		return false;
            }
        }
}