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

generics: generic call inside generic call; checker: check mut args at call

This commit is contained in:
Alexander Medvednikov
2020-05-29 04:30:00 +02:00
parent f0a9b88ac4
commit 81b44dc2c9
9 changed files with 50 additions and 29 deletions

View File

@ -17,7 +17,7 @@ fn main() {
vweb.run<App>(port)
}
pub fn (mut app App) init() {
pub fn (app App) init() {
app.vweb.handle_static('.')
}