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

checker: make use of private enum from outside module an error. (#9821)

This commit is contained in:
zakuro
2021-04-22 13:07:56 +09:00
committed by GitHub
parent c85eefa5b2
commit 7443179cc8
15 changed files with 117 additions and 105 deletions

View File

@ -1,7 +1,7 @@
module builtin
// ChanState describes the result of an attempted channel transaction.
enum ChanState {
pub enum ChanState {
success
not_ready // push()/pop() would have to wait, but no_block was requested
closed