-
as titled
-
### Code
Hey,I encountered a panic in the compiler version 1.76.0.
Using nightly 1.78.0 helps as it points the error in my code and do not crash the reason is that my first argument:
fn serializ…
-
### PHP Version
Any
### Shopware Version
6.5.8.6 / trunk
### Expected behaviour
Consider the following twig template in storefront, reduced for clarity:
```twig
{% set itemStyles = {
bor…
-
Consider the code:
```javascript
/** @const {!Array} */
const a = [1];
/** @const {!Array} */
const b = Array(10);
b[0] = 2;
/** @const {!Array} */
const c = [];
c.push(3);
/** @const …
-
I tried this code (reduced from something in real code):
```rust
fn bar(f: F) {
bar(|| ());
}
fn main() {
bar(|| ());
}
```
I expected this to work, but the compiler says: (note…
-
### Code
```rust
trait Gat {
type FooArg = &'a dyn ToString;
}
struct Test;
impl Iterator for Test {
type Item = Box;
fn next(&mut self) -> Option { None }
}
pub …
-
```rust
#![feature(custom_mir, core_intrinsics)]
extern crate core;
use core::intrinsics::mir::*;
pub enum E {
V0 { fld0: &'static u64 },
}
#[custom_mir(dialect = "runtime", phase = "in…
cbeuw updated
9 months ago
-
Compiling aloha (howling-mad branch) in advanced mode with the newest closure compiler (downloaded from the closure compiler website) aborts with a null pointer exception and the resulting aloha.min.j…
-
As far as I can tell, there is no way to write a trait bound for this closure:
```
let mut k : usize = 0;
let mut closure = || &mut k;
```
The closure's call function takes `&'somethi…
-
Did a clean checkout, ran
`lein repl`
`(start)`
and got this:
`gampg.server=> (run)
Figwheel: Starting server at http://localhost:3449
2016-01-15 08:06:40.129:INFO:oejs.Server:jetty-7.6.13.v20130…