repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0184-2.cs
blob
5d4e5deea9c25b683e8f97e896d5a02d937ec9e0
1
// cs0184.cs: The given expression is never of the provided (`string') type
2
// Line: 7
3
// Compiler options: -warnaserror -warn:1
4
5
class
A
{
6
static void
Main
() {
7
System
.
Console
.
WriteLine
(
null is string
);
8
}
9
}