2007-10-27 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / errors / cs0246-13.cs
1 // cs0246-13.cs: The type or namespace name `class' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 9
3 using System;
4
5 public class classAttribute : Attribute
6 {
7 }
8
9 [@class]
10 class Foo
11 {
12 }