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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-639.cs
blob
2b32d09f6c4c1ababbd3d9760ebf8fa045366aa6
1
class
Foo
{
2
bool
got
;
3
string
s
{
4
get
{ got = true; return ""; }
5
set
{ if (!got || value != "A1B2") throw new System.Exception (); }
6
}
7
8
public static void
Main
()
9
{
10
(
new
Foo
()).
s
+=
"A"
+
1
+
"B"
+
2
;
11
}
12
}