Merge: tests: Test result update for `curl_http`
[nit.git] / tests / sav / nitpretty_args14.res
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 class A
16         var attr: Int
17         fun foo1=(i: Int) do end
18         fun foo2=(i, j: Int) do end
19         fun [](a: Int): Int is abstract
20         fun []=(a, b: Int) do end
21 end
22
23 class B
24         fun [](a, b: Int): Int is abstract
25         fun []=(a, b, c: Int) do end
26 end
27
28 # comment 1
29 var a = new A(10) # comment 2
30 a.foo1 = 10 # comment 3
31 a.foo2(1) = 10 # comment 4
32 print a[1] # comment 5
33 a[1] = 2 # comment 6
34 a[2] += 3 # comment 7
35 var b = new B
36 print b[1, 2]
37 b[1, 2] = 10