library-rs

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub naoya675/library-rs

:warning: macro/debug/src/lib.rs

Code

macro_rules! debug {
    ($exa:expr $(,)*) => {
        #[cfg(debug_assertions)]
            eprintln!(concat!(stringify!($exa), " = {:?}"), &$exa);
        };
    ($exa:expr, $($ex:expr),* $(,)*) => {
        #[cfg(debug_assertions)]
            eprintln!(concat!(stringify!($exa), " = {:?}",
                $(", ", stringify!($ex), " = {:?}" ),*), &$exa, $($ex),*);
        };
}
Traceback (most recent call last):
  File "/opt/hostedtoolcache/Python/3.11.12/x64/lib/python3.11/site-packages/onlinejudge_verify/documentation/build.py", line 71, in _render_source_code_stat
    bundled_code = language.bundle(stat.path, basedir=basedir, options={'include_paths': [basedir]}).decode()
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/opt/hostedtoolcache/Python/3.11.12/x64/lib/python3.11/site-packages/onlinejudge_verify/languages/rust.py", line 288, in bundle
    raise NotImplementedError
NotImplementedError
Back to top page