Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
use_deprecated_function_warning.vv
24
lines
·
19
sloc
·
234 bytes
·
757929392e0e7a75fc1272116460981e589737d5
Raw
1
@[deprecated]
2
fn xyz() {
3
println('hi')
4
}
5
6
@[deprecated: 'use foo2 instead']
7
fn abc() {
8
println('hi')
9
}
10
11
fn main() {
12
xyz()
13
abc()
14
}
15
16
struct S1 {}
17
18
@[deprecated: 'use bar instead']
19
fn (s S1) m() {}
20
21
fn method() {
22
s := S1{}
23
s.m()
24
}
25