tests: add error_redef_vt
authorJean Privat <jean@pryen.org>
Wed, 28 Oct 2015 16:06:36 +0000 (12:06 -0400)
committerJean Privat <jean@pryen.org>
Thu, 29 Oct 2015 12:36:27 +0000 (08:36 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

tests/error_redef_vt.nit [new file with mode: 0644]
tests/sav/error_redef_vt.res [new file with mode: 0644]

diff --git a/tests/error_redef_vt.nit b/tests/error_redef_vt.nit
new file mode 100644 (file)
index 0000000..eb4ef40
--- /dev/null
@@ -0,0 +1,29 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import core::kernel
+
+class G[E: Object]
+end
+
+class A
+       redef type N1: A
+       redef type N2: FAIL
+       fun foo1: G[N1] do return new G[N1]
+       fun foo2: G[N2] do return new G[N2]
+end
+
+var a = new A
+a.foo1
+a.foo2
diff --git a/tests/sav/error_redef_vt.res b/tests/sav/error_redef_vt.res
new file mode 100644 (file)
index 0000000..320fa12
--- /dev/null
@@ -0,0 +1,3 @@
+error_redef_vt.nit:21,2--17: Error: no property `A::N1` is inherited. Remove the `redef` keyword to define a new property.
+error_redef_vt.nit:22,17--20: Error: class `FAIL` not found in module `error_redef_vt`.
+error_redef_vt.nit:22,2--20: Error: no property `A::N2` is inherited. Remove the `redef` keyword to define a new property.