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

@@ -49,7 +49,7 @@ enum Flag {
}
// State represents the state of the websocket connection.
enum State {
pub enum State {
connecting = 0
open
closing