go-analyzer/tests/test_types.txt

14 lines
185 B
Plaintext

package main;
import "fmt";
type mile uint;
type BinaryOp func(int, int) int;
type empty struct{
};
type person struct{
name, second_name string;
age int;
work func()
};