diff options
Diffstat (limited to 'mcs/errors/cs0246-29.cs')
-rw-r--r-- | mcs/errors/cs0246-29.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs0246-29.cs b/mcs/errors/cs0246-29.cs new file mode 100644 index 0000000000..051b956e54 --- /dev/null +++ b/mcs/errors/cs0246-29.cs @@ -0,0 +1,10 @@ +// CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference? +// Line: 8 + +class X +{ + public static void Main () + { + B b; + } +}
\ No newline at end of file |