Skip to content

Instantly share code, notes, and snippets.

@invokr
Created July 11, 2015 12:36
Show Gist options
  • Save invokr/2525f16bfc2fed347192 to your computer and use it in GitHub Desktop.
Save invokr/2525f16bfc2fed347192 to your computer and use it in GitHub Desktop.
// This works:
i.value.(func(*reader, *fieldpath))(r, fp)
// This doesn't:
type FieldPathOpFcn func(*reader, *fieldpath)
i.value.(FieldPathOpFcn)(r, fp)
panic: interface conversion: interface is func(*manta.reader, *manta.fieldpath), not manta.FieldPathOpFcn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment