We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f09914f commit 66a533dCopy full SHA for 66a533d
tests/smoke.rs
@@ -5,10 +5,10 @@ extern crate libc;
5
6
use std::str;
7
8
-const LIBUNWIND: bool = cfg!(all(unix, feature = "libunwind"));
9
-const UNIX_BACKTRACE: bool = cfg!(all(unix, feature = "unix-backtrace"));
10
-const LIBBACKTRACE: bool = cfg!(feature = "libbacktrace");
11
-const DLADDR: bool = cfg!(all(unix, feature = "dladdr"));
+static LIBUNWIND: bool = cfg!(all(unix, feature = "libunwind"));
+static UNIX_BACKTRACE: bool = cfg!(all(unix, feature = "unix-backtrace"));
+static LIBBACKTRACE: bool = cfg!(feature = "libbacktrace");
+static DLADDR: bool = cfg!(all(unix, feature = "dladdr"));
12
13
#[test]
14
fn smoke() {
0 commit comments