From 3852b4d4410538e52d97c49f212efb7d92b2b462 Mon Sep 17 00:00:00 2001 From: Gurtej Kanwar Date: Sun, 12 Sep 2021 12:59:34 +0200 Subject: [PATCH] Fixes missing generic_const_exprs feature label This was causing an ICE before, now everything runs again! Submitted the bug to the Rust Github issues tracker here: https://github.com/rust-lang/rust/issues/88882 --- src/bin/test_simple.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/test_simple.rs b/src/bin/test_simple.rs index 187afd5..792cd71 100644 --- a/src/bin/test_simple.rs +++ b/src/bin/test_simple.rs @@ -1,3 +1,5 @@ +#![feature(generic_const_exprs)] + use lqft::{c64, Action, Boundaries, ColorMat, ColorMatrix, Lattice4ColorMat, PureGaugeAction}; use ndarray::Array4;