repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
test-88.cs
blob
a45aafe7e5b15884b11a307584ff278f31adfd26
1
class
X
{
2
3
static void
f
(
string
s
)
4
{
5
s
.
Split
(
'a'
);
6
}
7
8
static int
Main
()
9
{
10
string
s
=
""
;
11
12
s
.
Split
(
'a'
);
13
s
.
Split
();
14
s
.
Split
(
'a'
,
'b'
,
'c'
);
15
return
0
;
16
}
17
}
18