18 byte[] ByteArray
= { 1, 100 }
;
20 public static int Main ()
23 dynamic a
= new Test ();
27 // dynamic compound assignment with different result type
50 } catch (OverflowException) {
60 } catch (OverflowException
) {
76 t
.DynamicByte
= byte.MaxValue
;
82 if (t
.DynamicByte
!= -245)
87 d
.ByteArray
[1] += 200;
90 } catch (OverflowException
) {