rust-playground icon indicating copy to clipboard operation
rust-playground copied to clipboard

The Rust Playground

Results 165 rust-playground issues
Sort by recently updated
recently updated
newest added

Hello, I've noticed that more and more developers from different countries are starting to use Rust , and playground has been a very reliable, safe and convenient way to try...

wontfix

Consider this code: ```rust pub fn f() { g::(); } pub fn g() -> std::mem::MaybeUninit

upstream

It would be nice to be able to write proc macros and try them out all on the playground.

I was trying to use the ansi_term crate to color and style the output text but instead I got this in the standard output: `This is colored, this is bold...

Opening this link https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=99d1c3ef5b3e76f316d032f75abcf913 Yields: ``` Unexpected token '

wontfix

Integrate support for [cargo-script](https://github.com/rust-lang/cargo/issues/12207) to enable users to utilize custom `Cargo.toml` configurations. Currently limited to nightly cargo, propose the addition of a switch to activate this feature when selecting the...

Very useful for comparing stacked borrows and tree borrows. An example for testing: ```rust fn main() { let val = [1u8, 2]; let ptr = &val[0] as *const u8; let...

I've been experiencing frequent hangs in the Playground, especially when I try to run tests, rustfmt, generate a share link, or run a program. I'm not sure if anyone else...