mirror of
https://github.com/Crocmagnon/fatcontext.git
synced 2024-11-12 19:23:58 +01:00
22 lines
290 B
Go
22 lines
290 B
Go
|
package contrib
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
func ok() {
|
||
|
ctx := context.Background()
|
||
|
|
||
|
for i := 0; i < 10; i++ {
|
||
|
ctx := context.WithValue(ctx, "key", i)
|
||
|
_ = ctx
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func notOk() {
|
||
|
ctx := context.Background()
|
||
|
|
||
|
for i := 0; i < 10; i++ {
|
||
|
ctx = context.WithValue(ctx, "key", i)
|
||
|
_ = ctx
|
||
|
}
|
||
|
}
|