Build:
- 0
2025-12-09 07:35.31: New job: test errpy.0.0.8 with dune-configurator.3.21.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29042/head (a9b8a0d0db631d21208bd4ab7355e867d7ecf88d)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29042/head" && git reset --hard a9b8a0d0
git fetch origin master
git merge --no-edit 2e91c1385fa6ee7c38e1108967fe3bf9ccba52f6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune-configurator.3.21.0~alpha2 3.21.0~alpha2
RUN opam reinstall dune-configurator.3.21.0~alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune-configurator.3.21.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall errpy.0.0.8; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'errpy.0.0.8' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test errpy.0.0.8) || true
RUN opam reinstall --with-test --verbose errpy.0.0.8; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'errpy.0.0.8' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-12-09 07:35.31: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-dune-configurator.3.21.0~alpha2-errpy.0.0.8-a9b8a0d0db631d21208bd4ab7355e867d7ecf88d"
2025-12-09 07:35.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune-configurator.3.21.0~alpha2 3.21.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.21.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.21.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall errpy.0.0.8;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'errpy.0.0.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test errpy.0.0.8) || true"))
(run (shell "opam reinstall --with-test --verbose errpy.0.0.8;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'errpy.0.0.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-09 07:35.31: Waiting for resource in pool OCluster
2025-12-09 16:04.40: Waiting for worker…
2025-12-09 16:09.37: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 2e91c1385f Merge pull request #29043 from hannesm/mirage-kv
Merge made by the 'ort' strategy.
.../chrome-trace/chrome-trace.3.21.0~alpha2/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0~alpha2/opam | 54 ++++++++++++++++
.../dune-build-info.3.21.0~alpha2/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0~alpha2/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0~alpha2/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0~alpha2/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0~alpha2/opam | 39 +++++++++++
packages/dune/dune.3.21.0~alpha2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0~alpha2/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0~alpha2/opam | 40 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0~alpha2/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0~alpha2/opam | 48 ++++++++++++++
.../top-closure/top-closure.3.21.0~alpha2/opam | 39 +++++++++++
packages/xdg/xdg.3.21.0~alpha2/opam | 41 ++++++++++++
17 files changed, 787 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.21.0~alpha2/opam
create mode 100644 packages/dune/dune.3.21.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.21.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.21.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.21.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.21.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.21.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.21.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
2025-12-09 16:09.44 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-09 16:09.44 ---> using "f1296791f2d76481058db697105a569091a6b6345f05c94bbc5a650f1a364f9a" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-09 16:09.44 ---> using "0cac9a31b4750e6a46df8ed8d2f68352091a988199fdf62c52779549510cd6bf" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2025-12-09 16:09.44 ---> using "1deb91dc3badca969976ed6f3bc5fe7c443d73a2cfa957be662fd6f93e30aa7b" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-12-09 16:09.44 ---> using "1a02438c8753bf7228a9eb625e65b7af26778a022b9ce0b16be5ef4f294c58cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-09 16:09.45 ---> using "5eb86997857236bc32f8e9906c0a6a1698d33db864496f8e374d3bf25b889084" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-09 16:09.45 ---> using "461b809ba40b3a1f0f49bbba2df1162936b2a997b1e1fab87951df5ee9c3828d" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [81.7 kB]
- Fetched 172 kB in 0s (1371 kB/s)
- Reading package lists...
-
2025-12-09 16:09.45 ---> using "d953188c1144583f4d6c9508d29746bc7aa496329e24e2133499412480d3b360" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.21.0~alpha2 3.21.0~alpha2"))
dune-configurator is now pinned to version 3.21.0~alpha2
2025-12-09 16:09.45 ---> using "f45886c6ac8e59201747e60854040b21b9efe54140a7fa9d122291c5a4c92615" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.21.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.21.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-configurator.3.21.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.0~alpha2 [required by dune-configurator]
- install dune-configurator 3.21.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.0~alpha2, dune-configurator.3.21.0~alpha2 (cached)
-> installed dune.3.21.0~alpha2
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 16:09.45 ---> using "a6180f788b49dedbf213ae73d9759448bdbce8414aac4ef4360e7ac1b6adfecc" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall errpy.0.0.8;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'errpy.0.0.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
errpy.0.0.8 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
- install conf-rust-2021 1 [required by errpy]
- install cppo 1.8.0 [required by ppx_deriving]
- install errpy 0.0.8
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by errpy]
- install ppxlib 0.37.0 [required by ppx_deriving]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
The following system packages will first need to be installed:
cargo
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "cargo"
- Selecting previously unselected package libpipeline1:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20653 files and directories currently installed.)
- Preparing to unpack .../libpipeline1_1.5.8-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-7_amd64.deb ...
- Unpacking binfmt-support (2.2.2-7) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21000 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21486 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package libhttp-parser2.9:amd64.
- Preparing to unpack .../01-libhttp-parser2.9_2.9.4-6+b2_amd64.deb ...
- Unpacking libhttp-parser2.9:amd64 (2.9.4-6+b2) ...
- Selecting previously unselected package libmbedcrypto16:amd64.
- Preparing to unpack .../02-libmbedcrypto16_3.6.4-2_amd64.deb ...
- Unpacking libmbedcrypto16:amd64 (3.6.4-2) ...
- Selecting previously unselected package libmbedx509-7:amd64.
- Preparing to unpack .../03-libmbedx509-7_3.6.4-2_amd64.deb ...
- Unpacking libmbedx509-7:amd64 (3.6.4-2) ...
- Selecting previously unselected package libmbedtls21:amd64.
- Preparing to unpack .../04-libmbedtls21_3.6.4-2_amd64.deb ...
- Unpacking libmbedtls21:amd64 (3.6.4-2) ...
- Selecting previously unselected package libgit2-1.9:amd64.
- Preparing to unpack .../05-libgit2-1.9_1.9.0+ds-2_amd64.deb ...
- Unpacking libgit2-1.9:amd64 (1.9.0+ds-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../06-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../07-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../08-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libstd-rust-1.85:amd64.
- Preparing to unpack .../09-libstd-rust-1.85_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking libstd-rust-1.85:amd64 (1.85.0+dfsg3-1) ...
- Selecting previously unselected package libstd-rust-dev:amd64.
- Preparing to unpack .../10-libstd-rust-dev_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking libstd-rust-dev:amd64 (1.85.0+dfsg3-1) ...
- Selecting previously unselected package rustc.
- Preparing to unpack .../11-rustc_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking rustc (1.85.0+dfsg3-1) ...
- Selecting previously unselected package libclang-cpp19.
- Preparing to unpack .../12-libclang-cpp19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-cpp19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libgc1:amd64.
- Preparing to unpack .../13-libgc1_1%3a8.2.8-1_amd64.deb ...
- Unpacking libgc1:amd64 (1:8.2.8-1) ...
- Selecting previously unselected package libobjc4:amd64.
- Preparing to unpack .../14-libobjc4_14.2.0-19_amd64.deb ...
- Unpacking libobjc4:amd64 (14.2.0-19) ...
- Selecting previously unselected package libobjc-14-dev:amd64.
- Preparing to unpack .../15-libobjc-14-dev_14.2.0-19_amd64.deb ...
- Unpacking libobjc-14-dev:amd64 (14.2.0-19) ...
- Selecting previously unselected package libclang-common-19-dev:amd64.
- Preparing to unpack .../16-libclang-common-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-linker-tools.
- Preparing to unpack .../17-llvm-19-linker-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package libclang1-19.
- Preparing to unpack .../18-libclang1-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang1-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package clang-19.
- Preparing to unpack .../19-clang-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package cargo.
- Preparing to unpack .../20-cargo_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking cargo (1.85.0+dfsg3-1) ...
- Selecting previously unselected package clang-tools-19.
- Preparing to unpack .../21-clang-tools-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-tools-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libc6-i386.
- Preparing to unpack .../22-libc6-i386_2.41-12_amd64.deb ...
- Unpacking libc6-i386 (2.41-12) ...
- Selecting previously unselected package lib32gcc-s1.
- Preparing to unpack .../23-lib32gcc-s1_14.2.0-19_amd64.deb ...
- Unpacking lib32gcc-s1 (14.2.0-19) ...
- Selecting previously unselected package lib32stdc++6.
- Preparing to unpack .../24-lib32stdc++6_14.2.0-19_amd64.deb ...
- Unpacking lib32stdc++6 (14.2.0-19) ...
- Selecting previously unselected package libclang-rt-19-dev:amd64.
- Preparing to unpack .../25-libclang-rt-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../26-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../27-libncurses6_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../28-libncurses-dev_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../29-libpfm4_4.13.0+git99-gc5587f9-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../30-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../31-libyaml-0-2_0.2.5-2_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-2) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../32-libz3-dev_4.13.3-1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.13.3-1) ...
- Selecting previously unselected package lld-19.
- Preparing to unpack .../33-lld-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking lld-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-runtime.
- Preparing to unpack .../34-llvm-19-runtime_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-runtime (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19.
- Preparing to unpack .../35-llvm-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../36-python3-pygments_2.18.0+dfsg-2_all.deb ...
- Unpacking python3-pygments (2.18.0+dfsg-2) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../37-python3-yaml_6.0.2-1+b2_amd64.deb ...
- Unpacking python3-yaml (6.0.2-1+b2) ...
- Selecting previously unselected package llvm-19-tools.
- Preparing to unpack .../38-llvm-19-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-dev.
- Preparing to unpack .../39-llvm-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-dev (1:19.1.7-3+b1) ...
- Selecting previously unselected package rust-llvm.
- Preparing to unpack .../40-rust-llvm_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking rust-llvm (1.85.0+dfsg3-1) ...
- Setting up media-types (13.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1) ...
- Setting up libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Setting up libncurses6:amd64 (6.5+20250216-2) ...
- Setting up binfmt-support (2.2.2-7) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libgc1:amd64 (1:8.2.8-1) ...
- Setting up libc6-i386 (2.41-12) ...
- Setting up libmbedcrypto16:amd64 (3.6.4-2) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libhttp-parser2.9:amd64 (2.9.4-6+b2) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libz3-dev:amd64 (4.13.3-1) ...
- Setting up libncurses-dev:amd64 (6.5+20250216-2) ...
- Setting up libclang1-19 (1:19.1.7-3+b1) ...
- Setting up libobjc4:amd64 (14.2.0-19) ...
- Setting up libobjc-14-dev:amd64 (14.2.0-19) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libmbedx509-7:amd64 (3.6.4-2) ...
- Setting up lib32gcc-s1 (14.2.0-19) ...
- Setting up lib32stdc++6 (14.2.0-19) ...
- Setting up libmbedtls21:amd64 (3.6.4-2) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up libstd-rust-1.85:amd64 (1.85.0+dfsg3-1) ...
- Setting up llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-runtime (1:19.1.7-3+b1) ...
- Setting up lld-19 (1:19.1.7-3+b1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libclang-cpp19 (1:19.1.7-3+b1) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up clang-19 (1:19.1.7-3+b1) ...
- Setting up clang-tools-19 (1:19.1.7-3+b1) ...
- Setting up libstd-rust-dev:amd64 (1.85.0+dfsg3-1) ...
- Setting up python3-pygments (2.18.0+dfsg-2) ...
- Setting up libgit2-1.9:amd64 (1.9.0+ds-2) ...
- Setting up rustc (1.85.0+dfsg3-1) ...
- Setting up llvm-19 (1:19.1.7-3+b1) ...
- Setting up rust-llvm (1.85.0+dfsg3-1) ...
- Setting up python3-yaml (6.0.2-1+b2) ...
- Setting up cargo (1.85.0+dfsg3-1) ...
- Setting up llvm-19-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-dev (1:19.1.7-3+b1) ...
- Processing triggers for libc-bin (2.41-12) ...
- Processing triggers for base-files (13.8+deb13u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-rust-2021.1 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-rust-2021.1
-> retrieved errpy.0.0.8 (cached)
-> installed cppo.1.8.0
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocamlfind.1.9.8
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed errpy.0.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 16:12.53 ---> saved as "156f9c8ecda463eb4caa2985ab0a7bb286d1f13a23745a995e5c813ff49efce7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test errpy.0.0.8) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile errpy 0.0.8
=== install 2 packages
- install ounit2 2.2.7 [required by errpy]
- install seq base [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved errpy.0.0.8 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> removed errpy.0.0.8
-> installed seq.base
-> installed ounit2.2.2.7
-> installed errpy.0.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 16:15.25 ---> saved as "2e89a1248254edcd38d6584570d9a589ddebb1b9c7ac662c999eb3b050286a21"
/home/opam: (run (shell "opam reinstall --with-test --verbose errpy.0.0.8;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'errpy.0.0.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile errpy 0.0.8
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [errpy.0.0.8: extract]
-> retrieved errpy.0.0.8 (cached)
Processing 2/4: [errpy: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "errpy" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8)
- (cd _build/default/src && /usr/bin/cargo build --release)
- Compiling proc-macro2 v1.0.59
- Compiling unicode-ident v1.0.9
- Compiling quote v1.0.28
- Compiling autocfg v1.1.0
- Compiling libc v0.2.144
- Compiling syn v1.0.109
- Compiling crossbeam-utils v0.8.15
- Compiling version_check v0.9.4
- Compiling memchr v2.5.0
- Compiling cfg-if v1.0.0
- Compiling cc v1.0.79
- Compiling scopeguard v1.1.0
- Compiling serde v1.0.163
- Compiling rayon-core v1.11.0
- Compiling io-lifetimes v1.0.11
- Compiling either v1.8.1
- Compiling rustix v0.37.19
- Compiling hashbrown v0.12.3
- Compiling toml_datetime v0.6.2
- Compiling winnow v0.4.6
- Compiling arbitrary v1.3.0
- Compiling regex-syntax v0.7.2
- Compiling siphasher v0.3.10
- Compiling rand_core v0.6.4
- Compiling linux-raw-sys v0.3.8
- Compiling once_cell v1.17.2
- Compiling bitflags v1.3.2
- Compiling unicode-xid v0.2.4
- Compiling regex-automata v0.1.10
- Compiling os_str_bytes v6.5.0
- Compiling heck v0.4.1
- Compiling unicode-width v0.1.10
- Compiling rustc-hash v1.1.0
- Compiling thiserror v1.0.40
- Compiling bumpalo v3.13.0
- Compiling termcolor v1.2.0
- Compiling strsim v0.10.0
- Compiling rust_to_ocaml_attr v0.0.0 (/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8/vendor/ocaml/interop/rust_to_ocaml/rust_to_ocaml_attr)
- Compiling proc-macro-error-attr v1.0.4
- Compiling proc-macro-error v1.0.4
- Compiling unicase v2.6.0
- Compiling rand v0.8.5
- Compiling phf_shared v0.11.1
- Compiling memoffset v0.8.0
- Compiling crossbeam-epoch v0.9.14
- Compiling indexmap v1.9.3
- Compiling itertools v0.10.5
- Compiling clap_lex v0.2.4
- Compiling phf_generator v0.11.1
- Compiling crossbeam-channel v0.5.8
- Compiling aho-corasick v1.0.1
- Compiling tree-sitter v0.20.10
- Compiling tree_sitter_python v0.0.0 (/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8/vendor/tree-sitter-python)
- Compiling ocamlrep_ocamlpool v0.0.0 (/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8/vendor/ocaml/interop/ocamlrep_ocamlpool)
- Compiling crossbeam-deque v0.8.3
- Compiling syn v2.0.18
- Compiling num_cpus v1.15.0
- Compiling atty v0.2.14
- Compiling toml_edit v0.19.10
- Compiling regex v1.8.3
- Compiling rayon v1.7.0
- Compiling terminal_size v0.2.6
- Compiling serde_derive v1.0.163
- Compiling thiserror-impl v1.0.40
- Compiling textwrap v0.16.0
- Compiling proc-macro-crate v1.3.1
- Compiling synstructure v0.12.6
- Compiling ocamlrep_derive v0.0.0 (/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8/vendor/ocaml/interop/ocamlrep_derive)
- Compiling num_enum_derive v0.5.11
- Compiling phf_macros v0.11.1
- Compiling clap_derive v3.2.25
- Compiling phf v0.11.1
- Compiling num_enum v0.5.11
- Compiling bstr v1.5.0
- Compiling ocamlrep v0.0.0 (/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8/vendor/ocaml/interop/ocamlrep)
- Compiling clap v3.2.25
- Compiling parser_pre_process v0.0.0 (/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8/src)
- Compiling ffi_ocaml v0.0.0 (/home/opam/.opam/5.4/.opam-switch/build/errpy.0.0.8)
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:13:10
- |
- 13 | #[derive(ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_RecoverableErrorWithLocation`
- 14 | #[rust_to_ocaml(attr = "deriving show")]
- 15 | pub struct RecoverableErrorWithLocation {
- | ---------------------------- `RecoverableErrorWithLocation` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: `#[warn(non_local_definitions)]` on by default
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:13:22
- |
- 13 | #[derive(ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_RecoverableErrorWithLocation`
- 14 | #[rust_to_ocaml(attr = "deriving show")]
- 15 | pub struct RecoverableErrorWithLocation {
- | ---------------------------- `RecoverableErrorWithLocation` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:24:34
- |
- 24 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Num`
- ...
- 27 | pub enum Num {
- | --- `Num` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:24:46
- |
- 24 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Num`
- ...
- 27 | pub enum Num {
- | --- `Num` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:42:34
- |
- 42 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ConstantDesc`
- ...
- 45 | pub enum ConstantDesc {
- | ------------ `ConstantDesc` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:42:46
- |
- 42 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ConstantDesc`
- ...
- 45 | pub enum ConstantDesc {
- | ------------ `ConstantDesc` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:60:34
- |
- 60 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Withitem`
- 61 | #[repr(C)]
- 62 | pub struct Withitem {
- | -------- `Withitem` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:60:46
- |
- 60 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Withitem`
- 61 | #[repr(C)]
- 62 | pub struct Withitem {
- | -------- `Withitem` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:68:34
- |
- 68 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Unaryop`
- ...
- 71 | pub enum Unaryop {
- | ------- `Unaryop` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:68:46
- |
- 68 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Unaryop`
- ...
- 71 | pub enum Unaryop {
- | ------- `Unaryop` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:79:34
- |
- 79 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_TypeIgnore`
- ...
- 82 | pub enum TypeIgnore {
- | ---------- `TypeIgnore` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:79:46
- |
- 79 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_TypeIgnore`
- ...
- 82 | pub enum TypeIgnore {
- | ---------- `TypeIgnore` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:87:34
- |
- 87 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Stmt`
- ...
- 90 | pub struct Stmt {
- | ---- `Stmt` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:87:46
- |
- 87 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Stmt`
- ...
- 90 | pub struct Stmt {
- | ---- `Stmt` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:99:34
- |
- 99 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_StmtDesc`
- ...
- 102 | pub enum StmtDesc {
- | -------- `StmtDesc` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:99:46
- |
- 99 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_StmtDesc`
- ...
- 102 | pub enum StmtDesc {
- | -------- `StmtDesc` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:214:34
- |
- 214 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Pattern`
- ...
- 217 | pub struct Pattern {
- | ------- `Pattern` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:214:46
- |
- 214 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Pattern`
- ...
- 217 | pub struct Pattern {
- | ------- `Pattern` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:226:34
- |
- 226 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_PatternDesc`
- ...
- 229 | pub enum PatternDesc {
- | ----------- `PatternDesc` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:226:46
- |
- 226 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_PatternDesc`
- ...
- 229 | pub enum PatternDesc {
- | ----------- `PatternDesc` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:253:34
- |
- 253 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Operator`
- ...
- 256 | pub enum Operator {
- | -------- `Operator` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:253:46
- |
- 253 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Operator`
- ...
- 256 | pub enum Operator {
- | -------- `Operator` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:273:34
- |
- 273 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Mod_`
- ...
- 276 | pub enum Mod_ {
- | ---- `Mod_` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:273:46
- |
- 273 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Mod_`
- ...
- 276 | pub enum Mod_ {
- | ---- `Mod_` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:290:34
- |
- 290 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_MatchCase`
- ...
- 293 | pub struct MatchCase {
- | --------- `MatchCase` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:290:46
- |
- 290 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_MatchCase`
- ...
- 293 | pub struct MatchCase {
- | --------- `MatchCase` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:300:34
- |
- 300 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Keyword`
- ...
- 303 | pub struct Keyword {
- | ------- `Keyword` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:300:46
- |
- 300 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Keyword`
- ...
- 303 | pub struct Keyword {
- | ------- `Keyword` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:313:34
- |
- 313 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ExprContext`
- ...
- 316 | pub enum ExprContext {
- | ----------- `ExprContext` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:313:46
- |
- 313 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ExprContext`
- ...
- 316 | pub enum ExprContext {
- | ----------- `ExprContext` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:323:34
- |
- 323 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Expr`
- ...
- 326 | pub struct Expr {
- | ---- `Expr` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:323:46
- |
- 323 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Expr`
- ...
- 326 | pub struct Expr {
- | ---- `Expr` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:335:34
- |
- 335 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ExprDesc`
- ...
- 338 | pub enum ExprDesc {
- | -------- `ExprDesc` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:335:46
- |
- 335 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ExprDesc`
- ...
- 338 | pub enum ExprDesc {
- | -------- `ExprDesc` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:448:34
- |
- 448 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Excepthandler`
- ...
- 451 | pub struct Excepthandler {
- | ------------- `Excepthandler` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:448:46
- |
- 448 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Excepthandler`
- ...
- 451 | pub struct Excepthandler {
- | ------------- `Excepthandler` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:460:34
- |
- 460 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ExcepthandlerDesc`
- ...
- 463 | pub enum ExcepthandlerDesc {
- | ----------------- `ExcepthandlerDesc` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:460:46
- |
- 460 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ExcepthandlerDesc`
- ...
- 463 | pub enum ExcepthandlerDesc {
- | ----------------- `ExcepthandlerDesc` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:472:34
- |
- 472 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Comprehension`
- ...
- 475 | pub struct Comprehension {
- | ------------- `Comprehension` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:472:46
- |
- 472 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Comprehension`
- ...
- 475 | pub struct Comprehension {
- | ------------- `Comprehension` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:483:34
- |
- 483 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Cmpop`
- ...
- 486 | pub enum Cmpop {
- | ----- `Cmpop` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:483:46
- |
- 483 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Cmpop`
- ...
- 486 | pub enum Cmpop {
- | ----- `Cmpop` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:500:34
- |
- 500 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Boolop`
- ...
- 503 | pub enum Boolop {
- | ------ `Boolop` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:500:46
- |
- 500 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Boolop`
- ...
- 503 | pub enum Boolop {
- | ------ `Boolop` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:509:34
- |
- 509 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Arguments`
- ...
- 512 | pub struct Arguments {
- | --------- `Arguments` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:509:46
- |
- 509 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Arguments`
- ...
- 512 | pub struct Arguments {
- | --------- `Arguments` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:523:34
- |
- 523 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Arg`
- ...
- 526 | pub struct Arg {
- | --- `Arg` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:523:46
- |
- 523 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Arg`
- ...
- 526 | pub struct Arg {
- | --- `Arg` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:537:34
- |
- 537 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_Alias`
- ...
- 540 | pub struct Alias {
- | ----- `Alias` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:537:46
- |
- 537 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_Alias`
- ...
- 540 | pub struct Alias {
- | ----- `Alias` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:550:34
- |
- 550 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ArgumentsArgs`
- ...
- 553 | pub enum ArgumentsArgs {
- | ------------- `ArgumentsArgs` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:550:46
- |
- 550 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ArgumentsArgs`
- ...
- 553 | pub enum ArgumentsArgs {
- | ------------- `ArgumentsArgs` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:561:34
- |
- 561 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ArgumentsKwarg`
- ...
- 564 | pub enum ArgumentsKwarg {
- | -------------- `ArgumentsKwarg` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:561:46
- |
- 561 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ArgumentsKwarg`
- ...
- 564 | pub enum ArgumentsKwarg {
- | -------------- `ArgumentsKwarg` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:572:34
- |
- 572 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ArgumentsVararg`
- ...
- 575 | pub enum ArgumentsVararg {
- | --------------- `ArgumentsVararg` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:572:46
- |
- 572 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ArgumentsVararg`
- ...
- 575 | pub enum ArgumentsVararg {
- | --------------- `ArgumentsVararg` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:583:34
- |
- 583 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ExcepthandlerExcepthandlerName`
- ...
- 586 | pub enum ExcepthandlerExcepthandlerName {
- | ------------------------------ `ExcepthandlerExcepthandlerName` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:583:46
- |
- 583 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ExcepthandlerExcepthandlerName`
- ...
- 586 | pub enum ExcepthandlerExcepthandlerName {
- | ------------------------------ `ExcepthandlerExcepthandlerName` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:594:34
- |
- 594 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ExprBytesS`
- ...
- 597 | pub enum ExprBytesS {
- | ---------- `ExprBytesS` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:594:46
- |
- 594 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ExprBytesS`
- ...
- 597 | pub enum ExprBytesS {
- | ---------- `ExprBytesS` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:603:34
- |
- 603 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ExprSubscriptSlice`
- ...
- 606 | pub enum ExprSubscriptSlice {
- | ------------------ `ExprSubscriptSlice` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:603:46
- |
- 603 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ExprSubscriptSlice`
- ...
- 606 | pub enum ExprSubscriptSlice {
- | ------------------ `ExprSubscriptSlice` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:612:34
- |
- 612 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_ExprYieldfromValue`
- ...
- 615 | pub enum ExprYieldfromValue {
- | ------------------ `ExprYieldfromValue` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:612:46
- |
- 612 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_ExprYieldfromValue`
- ...
- 615 | pub enum ExprYieldfromValue {
- | ------------------ `ExprYieldfromValue` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:622:34
- |
- 622 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_KeywordArg`
- ...
- 625 | pub enum KeywordArg {
- | ---------- `KeywordArg` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:622:46
- |
- 622 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_KeywordArg`
- ...
- 625 | pub enum KeywordArg {
- | ---------- `KeywordArg` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:632:34
- |
- 632 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^---------
- | |
- | `ToOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_ToOcamlRep_FOR_StmtImportfromModule`
- ...
- 635 | pub enum StmtImportfromModule {
- | -------------------- `StmtImportfromModule` is not local
- |
- = note: the derive macro `ToOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `ToOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `ToOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
- --> src/ast.rs:632:46
- |
- 632 | #[derive(Serialize, Deserialize, ToOcamlRep, FromOcamlRep)]
- | ^-----------
- | |
- | `FromOcamlRep` is not local
- | move the `impl` block outside of this constant `_DERIVE_ocamlrep_FromOcamlRep_FOR_StmtImportfromModule`
- ...
- 635 | pub enum StmtImportfromModule {
- | -------------------- `StmtImportfromModule` is not local
- |
- = note: the derive macro `FromOcamlRep` defines the non-local `impl`, and may need to be changed
- = note: the derive macro `FromOcamlRep` may come from an old version of the `ocamlrep_derive` crate, try updating your dependency with `cargo update -p ocamlrep_derive`
- = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
- = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
- = note: this warning originates in the derive macro `FromOcamlRep` (in Nightly builds, run with -Z macro-backtrace for more info)
-
- warning: `ffi_ocaml` (lib) generated 68 warnings
- Finished `release` profile [optimized] target(s) in 1m 03s
-> compiled errpy.0.0.8
-> removed errpy.0.0.8
-> installed errpy.0.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 16:16.45 ---> saved as "c8d6348d94133c830c4d0e09286a7b548e6ddd88e3f0a8df44503f7280b4da06"
Job succeeded
2025-12-09 16:17.14: Job succeeded