2021-10-29 01:18:34 -07:00
|
|
|
//go:build ignore
|
2019-01-22 22:35:01 -08:00
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
2026-03-06 20:14:02 +00:00
|
|
|
import . "sources.truenas.cloud/code/avo/build"
|
2019-01-22 22:35:01 -08:00
|
|
|
|
|
|
|
|
func main() {
|
2026-03-06 20:14:02 +00:00
|
|
|
Package("sources.truenas.cloud/code/avo/examples/ext")
|
2019-01-22 22:35:01 -08:00
|
|
|
Implement("StructFieldB")
|
|
|
|
|
b := Load(Param("e").Field("B"), GP8())
|
|
|
|
|
Store(b, ReturnIndex(0))
|
|
|
|
|
RET()
|
|
|
|
|
Generate()
|
|
|
|
|
}
|