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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-424.cs
blob
815df52265eb28f3880705af82f851c135ec2c5b
1
using
System
;
2
3
class
C
4
{
5
public static int
Main
()
6
{
7
const string
s
=
"oups"
;
8
if
(
s
.
Length
!=
4
) {
9
Console
.
WriteLine
(
s
.
Length
);
10
return
2
;
11
}
12
13
return
0
;
14
}
15
}