mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-01 23:45:50 +00:00
b4c0fcfaad
It helps us to keep the index clean and ordered. When some new RPC binding test should be added, we don't need to search for a suitable place for it. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
17 lines
373 B
Go
17 lines
373 B
Go
package invalid4
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
|
|
|
type SomeStruct1 struct {
|
|
Field1 int
|
|
}
|
|
|
|
type SomeStruct2 struct {
|
|
Field2 string
|
|
}
|
|
|
|
func Main() {
|
|
// Inconsistent event params usages (different named types throughout the usages).
|
|
runtime.Notify("SomeEvent", SomeStruct1{Field1: 123})
|
|
runtime.Notify("SomeEvent", SomeStruct2{Field2: "str"})
|
|
}
|