1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/register_ierror_interface.out

6 lines
214 B
Plaintext

vlib/v/parser/tests/register_ierror_interface.vv:1:11: error: cannot register interface `IError`, it is builtin interface type
1 | interface IError {
| ~~~~~~
2 | foo() string
3 | }