ccollins476ad commented on issue #55: MYNEWT-583; newt - allow use of specific 
tag/repository revision.
URL: 
https://github.com/apache/incubator-mynewt-newt/pull/55#issuecomment-305039698
 
 
   Just an FYI- here is a playground program which I think reproduces this 
case: https://play.golang.org/p/UP8i8vo1oZ
   
   ```
   package main
   
   import (
        "fmt"
   )
   
   type S struct {
        a int
   }
   
   func (s *S) String() string {
        return fmt.Sprintf("%d", s.a)
   }
   
   func main() {
        s := S{5}
        fmt.Printf("s=%s\n", s)
   }
   ```
   
   Output:
   ```
   s={%!s(int=5)}
   
   Program exited.
   ```
   
   Maybe there is something different in this example?
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to