repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bring XslCompiledTransform to MonoTouch
[mcs.git]
/
errors
/
cs1720.cs
blob
7a24ada4e12b51c5ef624a58c3800f3697350991
1
// CS1720: Expression will always cause a `System.NullReferenceException'
2
// Line: 11
3
// Compiler options: -warnaserror -warn:1
4
5
using
System
;
6
7
public class
Tester
8
{
9
public static void
Main
()
10
{
11
Console
.
WriteLine
(((
object
)
null
).
ToString
());
12
}
13
}