-
This issue was imported from Closure Compiler's previous home at http://closure-compiler.googlecode.com
The link to the original issue is:
https://blickly.github.io/closure-compiler-issues/#1220
-
This issue was imported from Closure Compiler's previous home at http://closure-compiler.googlecode.com
The link to the original issue is:
https://blickly.github.io/closure-compiler-issues/#179
-
I tried this code:
```rust
#![feature(generic_const_exprs)]
#![feature(associated_const_equality)]
use std::marker::PhantomData;
trait Foo {
const ASSOC: usize;
}
struct Bar {
…
-
### Code
```Rust
#![feature(dyn_star, pointer_like_trait)]
#![allow(incomplete_features)]
use std::fmt::Debug;
use std::marker::PointerLike;
fn make_dyn_star dyn* Debug + 'a {
f32…
-
On 65519f5fc0bcd8a47e547226bbc7498a2b9a59fb, `rustc -Cincremental=foo -Zdep-tasks main.rs` causes an ICE:
```rust
// main.rs
fn main() {}
```
```
[task::new] crate_name(error: internal compi…
-
I'm trying to minify the generated WebCL program by passing the '--closure 1' option to emscripten. However, the closure compiler can't recognize WebCL APIs and will replace them with shorter names. T…
-
The following code compiles:
```rust
fn main() {
let a_closure = |num| {
num+1.0
};
println!("{}", a_closure(1.0));
}
```
But the following doesn't:
```rust
fn mai…
-
I am working on a fork of https://github.com/MaterializeInc/materialize and my branch is on top of commit https://github.com/MaterializeInc/materialize/commit/9e11e1db0ff3220cc69abe28f22feca46da413d9.…
-
### Description
It seems like `async let` is not working well with isolation checking.
I'm trying to make backport feature of `DiscardableTaskGroup`.
Thanks to generalized async-sequence evolutio…
-
### Feature Spec
When creating a closure, the phase is inferred by what is needed for the current situation if unambiguous:
```rust
bring cloud;
let bucket = new cloud.Bucket();
let queue = n…