Marc Vertes

Results 25 issues of Marc Vertes

Adding the trailing slash allows to trigger the bench handler for performance measurements in situations where a trailing slash character '/' is added to the request. For example, in traefik...

### The following program `sample.go` triggers an unexpected result ```go package main import "errors" type T struct{} func (t *T) Error() string { return "T error" } var myErr =...

bug
area/core

The following program `sample.go` triggers an unexpected result: ```go package main import "unsafe" const constSize = unsafe.Sizeof(uintptr(0)) var varSize = unsafe.Sizeof(uintptr(0)) func main() { println(constSize, varSize) } ``` Expected result:...

bug
area/core

The following program `sample.go` triggers an unexpected result: ```go package main import ( "encoding/json" "fmt" ) type Foo struct{} func (f Foo) MarshalJSON() ([]byte, error) { return []byte(`{"test": "foo"}`), nil...

bug
area/core

The following program `sample.go` triggers an unexpected error: ```go package main type T struct { f func(*T) } func f1(t *T) { println("in f") } func main() { t :=...

bug
area/core

The following program `sample.go` triggers a panic: ```go package main import "reflect" type I interface { Foo() } type T struct { Name string } func (t T) Foo() {...

bug
area/core

Fixes #1475

bug
status/2-needs-review
area/core

### The following program `sample.go` triggers an unexpected result ```go package main type T uint16 func f() T { return 0 } func main() { println(f()) } ``` ### Expected...

bug
area/core

In case of interface values, make sure that the concrete type is preserved during type inference. Fixes #1466.

bug
status/2-needs-review
area/core