Skip to content

Instantly share code, notes, and snippets.

@bilus
Created April 4, 2018 21:18
Show Gist options
  • Save bilus/7be303daa6e94d8421c2dbf511e2b8ae to your computer and use it in GitHub Desktop.
Save bilus/7be303daa6e94d8421c2dbf511e2b8ae to your computer and use it in GitHub Desktop.
package main
import (
"github.com/bilus/fencer/primitives"
"github.com/iBiquity/conrad/delivery/go-broadcasts/store"
"github.com/iBiquity/conrad/delivery/go-broadcasts/test/fixtures"
"log"
"runtime"
)
func main() {
b := fixtures.NewBroadcast(store.BroadcastId(123), store.BroadcastType("hdradio"), "{}", nil, nil, nil, nil, fixtures.RightArea)
log.Println(b)
runtime.GC()
b.Contains(primitives.Point{0, 0})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment