blob: 3c011d72b02c510f7dfb4b5946c88b1b4b1742b6 (
plain)
1
2
3
4
5
6
|
// It is unclear whether a fully unconfigured crate should link to standard library,
// or what its `no_std`/`no_core`/`compiler_builtins` status, more precisely.
// Currently the usual standard library prelude is added to such crates,
// and therefore they link to libstd.
#![cfg(FALSE)]
|