mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 05:41:41 +00:00
7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#![deny(unsafe_code)] /*This line is ignored by bash
|
|
# This block is ignored by rustc
|
|
echo "Warning: y.rs is a deprecated alias for y.sh" 1>&2
|
|
exec ./y.sh "$@"
|
|
*/
|