From 51e64e442bd1f0f3c13e26a1655c128b87d3997b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Christophe=20Beaupr=C3=A9?= Date: Thu, 4 Aug 2016 12:32:56 -0400 Subject: [PATCH] Add a test for the class kind of `Object` MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jean-Christophe Beaupré --- tests/test_object_class_kind.nit | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/test_object_class_kind.nit diff --git a/tests/test_object_class_kind.nit b/tests/test_object_class_kind.nit new file mode 100644 index 0000000..415694f --- /dev/null +++ b/tests/test_object_class_kind.nit @@ -0,0 +1,22 @@ +# 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 end + +interface Object #alt1-4# +#alt1# abstract class Object +#alt2# class Object +#alt3# enum Object +#alt4# extern class Object +end -- 1.7.9.5