Fork of daniellemaywood.uk/gleam — Wasm codegen work
403 B
13 lines
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: 2026 The Gleam contributors
3
4//// This module depends on two, that doesn't have any errors but it should be
5//// skipped anyway as it depends on a module that does have errors.
6//// So this module has to be skipped as well!!
7
8import two
9
10pub fn three_error() {
11 // This error should pop up as the module should be skipped
12 1 + False
13}