src: move pseudo-toplevel methods from Object
[nit.git] / tests / base_attr_abstract2.nit
index 931f334..522abd1 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-import standard::kernel
+import core::kernel
 
 abstract class A
        var x: Int
-       var y: Int is abstract
+       var y: Int is abstract, autoinit
 end
 
 class B