-
### Description
I'm trying to understand the difference between these two forms. I *think* they should be equivalent, but the global actor version works and the isolation param version does not.
…
-
auto-reduced (treereduce-rust):
````rust
#![rustc_never_type_options(: Unsize = "hi")]
fn main() {}
````
original:
````rust
//
// issue: rust-lang/rust#120600
#![allow(internal_…
-
While debugging an issue with nested loops I simplified my shader to one loop as a sanity check and then hit this compiler panic. It seems to be caused by looping indefinitely (in my shader I forgot t…
-
[CUDA Extended Lambdas](https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#extended-lambda) (lambdas with `__device__` or `__host__ __device__`) annotations are a useful convenience, but…
-
`Object.prototype.propertyIsEnumerable` defined in [`es3.js`](https://github.com/google/closure-compiler/blob/5c3dca6b6f0cd28b233b8286b07a863097a8fa7b/externs/es3.js#L512) only accepts `string…
-
I tried using the installation directions on a Raspberry Pi (running stretch) and it did not work:
```
$ GOPATH=`pwd` go install github.com/kellegous/go
can't load package: package github.com/kelle…
-
### Problem
Consider the following code
```charp
using Cathei.LinqGen;
int[] array = new int[] { 1, 2, 3, 4, 5 };
int upperLimit = 3;
int result = array.Gen()
.Where(x =>…
-
Found with a [modified fuzz-rustc](https://github.com/jruderman/fuzz-rustc)
### Code
```rust
#![feature(asm_const)]
use std::arch::asm;
async unsafe fn foo() {
| …
-
snippet:
````rust
#![feature(generic_const_exprs)]
struct Outer();
impl Outer
where
[(); A + (B * 2)]:,
{
fn i() -> Self {
Self
}
}
fn main() {
Outer::::o(…
-
### Code
```Rust
#![crate_type = "staticlib"]
#![feature(core_intrinsics)]
use std::intrinsics::rustc_peek;
#[no_mangle]
fn foo() -> i32 {
let x = 0;
rustc_peek(x)
}
```
#…