Mathieu

Results 14 issues of Mathieu

### The following program `sample.go` triggers an unexpected result ```go package main import ( "bufio" "errors" "log" "net" "net/http" "net/http/httputil" "net/url" ) type Middleware struct { next http.Handler } func...

bug
area/core

### The following program `sample.go` triggers an unexpected result ```go package main import ( "net/url" ) func main() { u := url.URL // Note the missing curly braces u.Host =...

bug
area/core

### The following program `sample.go` triggers an unexpected result ```go package main import ( "time" "go.uber.org/zap" ) func main() { logger, _ := zap.NewProduction() // defer logger.Sync() // flushes buffer,...

bug
area/core

### The following program `sample.go` triggers an unexpected result ```go package main type Number int32 type Number1 = Number type Number2 = Number1 func (n Number2) IsValid() bool { return...

bug
area/core

The following program `sample.go` runs fine: ```go package main func main() { 1/1 println("foo") } ``` Expected result: ```console $ go run ./sample.go 1 / 1 evaluated but not used...

bug
area/core

Hey, not really your fault as it seems docker is constantly evolving, but basically your Dockerfile has the same problem as in https://github.com/tomparys/docker-skype-pulseaudio or https://github.com/docker/docker/issues/5539 , i.e. on my machine...

Jsyk, this repo will need some changes to support Go 1.14. Among other things: - nanotime has been renamed to nanotime1 - same for walltime - new resetMemoryDataView function -...

Hello, Do you have any idea how hard it would be to add (at least partial) support for dart (https://dart.dev/) ? FYI, vim does it through https://github.com/natebosch/vim-lsc , and https://github.com/natebosch/vim-lsc-dart...

### The following program `sample.go` triggers an unexpected result ```go package main import ( "log" "github.com/bradfitz/gomemcache/memcache" ) func main() { mc := memcache.New("localhost:11211", "localhost:11212") mc.Set(&memcache.Item{Key: "foo", Value: []byte("my value")}) it,...

bug
area/core