Reproduce issue 153

This commit is contained in:
David Tolnay 2025-05-22 09:42:07 -07:00
parent b3b07ba8b4
commit 9205c9b79d
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
4 changed files with 26 additions and 0 deletions

18
.github/workflows/repro.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: Repro
on:
push:
branches: [repro]
permissions:
contents: read
jobs:
repro:
name: Repro
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- run: echo 1.85.0 > rust-toolchain
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --check

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/target/
/Cargo.lock

5
Cargo.toml Normal file
View file

@ -0,0 +1,5 @@
[package]
name = "repro"
version = "0.0.0"
edition = "2024"
publish = false

1
src/main.rs Normal file
View file

@ -0,0 +1 @@
fn main() {}