// Copyright (c) 2024 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

// From daml main repo:
// - To generate the dar
//     bazel run  daml-lf/encoder:encoder_binary -- /tmp/illformed.lf --skip-validation  --target 2.1 --output /tmp/illformed.dar
// - To check the package is not valid
//     bazel run daml-lf/repl -- validate /tmp/illformed.dar
// - To inspect the generated package
//     bazel run damlc -- inspect /tmp/illformed.dar

module Mod {

   val x: Bool = ();

}

