Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ci-test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/bin/bash
set -euo pipefail

rustc gamma.rs && ./gamma
exit 1

DEFAULTFLAGS="-Zrandomize-layout -Zmiri-strict-provenance"

# make sure we keep using the current toolchain even in subdirs that have a toolchain file
Expand Down
5 changes: 5 additions & 0 deletions gamma.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#![feature(float_gamma)]

fn main() {
dbg!(std::hint::black_box(-0.5f32).gamma());
}
Loading