#!/usr/bin/bash

OUT="$(mktemp)"

rustc -o "$OUT" -

if [ -f $OUT ]; then
  exec "$OUT"
fi