Address some unused warnings

This commit is contained in:
Richard Feldman 2024-02-14 13:47:26 -05:00
parent adfaefd4b7
commit 3aec2a9182
No known key found for this signature in database
GPG Key ID: F1F21AA5B1D9E43B
3 changed files with 7 additions and 11 deletions

View File

@ -12,8 +12,6 @@ use roc_std::RocList;
#[cfg(all(test, any(feature = "gen-llvm", feature = "gen-wasm")))]
use roc_std::RocStr;
use crate::helpers::with_larger_debug_stack;
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn hash_specialization() {
@ -937,7 +935,7 @@ fn encode_derived_generic_tag_with_different_field_types() {
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn specialize_unique_newtype_records() {
with_larger_debug_stack(|| {
crate::helpers::with_larger_debug_stack(|| {
assert_evals_to!(
indoc!(
r#"
@ -1060,12 +1058,10 @@ mod decode_immediate {
#[cfg(all(test, feature = "gen-llvm"))]
use roc_std::RocStr;
use crate::helpers::with_larger_debug_stack;
#[test]
#[cfg(feature = "gen-llvm")]
fn string() {
with_larger_debug_stack(|| {
crate::helpers::with_larger_debug_stack(|| {
assert_evals_to!(
indoc!(
r#"
@ -1187,7 +1183,7 @@ mod decode_immediate {
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn decode_list_of_strings() {
with_larger_debug_stack(|| {
crate::helpers::with_larger_debug_stack(|| {
assert_evals_to!(
indoc!(
r#"
@ -1208,7 +1204,7 @@ fn decode_list_of_strings() {
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn encode_then_decode_list_of_strings() {
with_larger_debug_stack(|| {
crate::helpers::with_larger_debug_stack(|| {
assert_evals_to!(
indoc!(
r#"
@ -1230,7 +1226,7 @@ fn encode_then_decode_list_of_strings() {
#[cfg(feature = "gen-llvm")]
#[ignore = "#3696: Currently hits some weird panic in borrow checking, not sure if it's directly related to abilities."]
fn encode_then_decode_list_of_lists_of_strings() {
with_larger_debug_stack(|| {
crate::helpers::with_larger_debug_stack(|| {
assert_evals_to!(
indoc!(
r#"
@ -2149,7 +2145,7 @@ mod eq {
#[test]
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
fn issue_4772_weakened_monomorphic_destructure() {
with_larger_debug_stack(|| {
crate::helpers::with_larger_debug_stack(|| {
assert_evals_to!(
indoc!(
r#"

View File

@ -1,6 +1,7 @@
#[cfg(feature = "gen-llvm")]
use crate::helpers::llvm::assert_evals_to_erased;
#[cfg(feature = "gen-llvm")]
use indoc::indoc;
#[test]

View File

@ -1,6 +1,5 @@
use libloading::Library;
use roc_build::link::{link, LinkType};
use roc_builtins::bitcode;
use roc_load::{EntryPoint, ExecutionMode, LoadConfig, Threading};
use roc_mono::ir::CrashTag;
use roc_mono::ir::SingleEntryPoint;