summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-13.cs
blob: ecf4383faf7cf1788ff13919e52f49bc5bfe8377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0246: The type or namespace name `class' could not be found. Are you missing an assembly reference?
// Line: 9
using System;

public class classAttribute : Attribute
{
}

[@class]
class Foo
{
}