repos
/
moxie
/
tests
/
restrictions
/ reject_new_builtin.mx
reject_new_builtin.mx
raw
1
// expected: 'new' is not allowed
2
3
package main
4
5
func startup() {
6
_ = new(int32)
7
}
8