From 80448899d85ce0132f7c4765b6fd3e99d7bcbc53 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Mon, 30 Sep 2024 21:58:21 -0700 Subject: [PATCH] Remove nightly features Don't actually need these since we aren't defining our own pointers Signed-off-by: Alek Ratzloff --- src/main.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index 847a8ae..719053a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,8 +1,3 @@ -// trait_upcasting - https://github.com/rust-lang/rust/issues/65991 -// stabilization in progress -#![feature(trait_upcasting)] -#![feature(coerce_unsized)] - mod ast; mod builtins; mod compiler;