-
### Code
```Rust
#![feature(rustc_attrs)]
#[rustc_symbol_name]
trait Foo {}
```
### Meta
`rustc --version --verbose`:
```
rustc 1.53.0-nightly (07e0e2ec2 2021-03-24)
binary: ru…
-
### Code
Not yet minimized. Seems to come from https://cs.opensource.google/fuchsia/fuchsia/+/main:src/connectivity/network/tests/integration/inspect/src/lib.rs;l=1617;drc=40f5937c45609e364e491…
-
### Code
`src/test/ui/type-alias-impl-trait/issue-96572-unconstrained.rs`
```Rust
#![feature(type_alias_impl_trait)]
// check-pass
fn main() {}
fn upvar() {
#[derive(Copy, Clone)]
…
-
Open Developer Grant Request: SteelDomeCyber,
Proposer Rich Van Duysen, github rvanduysen
**(Optional) Filecoin ecosystem affiliations:** `Please disclose any existing work relationships with o…
-
`targets` has two major challenges with pseudo-random number generation:
1. Statistical reproducibility. Different runs of the same pipeline must give the exact same results.
2. Statistical indepe…
-
*TL;DR*: An attacker can re-use the same OPRF key (Issuer Origin Secret, denoted `sk_origin` in pseudocode) for each origin to track clients across origins if the attester doesn't implement a security…
-
### Code
```Rust
trait Structure: Sized {
type RefTarget: ?Sized;
type FfiPtr;
unsafe fn borrow_from_ffi_ptr;
}
enum Slice {}
impl Structure for Slice
where
S: Stru…
-
### Code
```Rust
#![feature(generators)]
fn foo() {
let _y = static || {
let x = &mut 0;
*{
yield;
x
} += match { *"" }.len() {
…
-
### Code
```Rust
fn test5() {
let t = (String::new(), Default::default());
}
```
### Meta
`rustc --version --verbose`:
```
rustc 1.73.0-nightly (e571544f4 2023-07-11)
binar…
-
### Code
```Rust
#![feature(return_position_impl_trait_in_trait)]
use std::future::Future;
pub trait AsyncTrait {
fn async_fn_multiple impl Future;
}
pub struct Struct;
impl …