update NOTICE and LICENSE
[nit.git] / tests / error_redef.nit
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 import kernel
16
17 class A
18 #1alt1#fun f1 do end
19 #1alt2#fun f1(i: Int) do end
20 #1alt3#fun f1: Int do return 0
21 #1alt4#fun f1(i: Int): Int do return i + 1
22 end
23
24 class B
25 super A
26 #alt1#redef fun f1 do end
27 #alt2#redef fun f1(i: Int) do end
28 #alt3#redef fun f1(i) do end
29 #alt4#redef fun f1 do return 0
30 #alt5#redef fun f1(i: Int) do return i + 1
31 #alt6#redef fun f1(i) do return i + 1
32 #alt7#redef fun f1: Int do return 0
33 #alt8#redef fun f1(i: Int): Int do return i + 1
34 #alt9#redef fun f1(i): Int do return i + 1
35 end
36