2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-639.cs
blob4d4587dc36f7221b02c503ce500ba3282dc659ba
1 class Foo {
2 bool got;
3 string s {
4 get { got = true; return ""; }
5 set { if (!got || value != "A1B2") throw new System.Exception (); }
8 static void Main ()
10 (new Foo ()).s += "A" + 1 + "B" + 2;