# Dict issue?

**URL:** https://discourse.julialang.org/t/dict-issue/42338
**Category:** General Usage
**Created:** [July 1, 2020, 3:17am UTC](https://discourse.julialang.org/t/dict-issue/42338 "2020-07-01T03:17:56Z")
**Posts on this page:** 1
**Showing post:** 1

<div class="post-metadata">

### Author: ![vinhphunguyen](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/vinhphunguyen/32/16316_2.png) [@vinhphunguyen](https://discourse.julialang.org/u/vinhphunguyen)
#### Post date: [July 1, 2020, 3:17am UTC](https://discourse.julialang.org/t/dict-issue/42338/1 "2020-07-01T03:17:56Z")

</div>

I made a dictionary to store some inputs to a function, see below

```julia
    data = Dict()
    data["total_time"] = 0.3
    data["time"] = 0.
    data["dt"] = 1e-3
   function f(data)
        Tf = Float64(data["total_time"])
	dtime = Float64(data["dt"] )        
	t = Float64(data["time"])      
	fric = Float64(data["friction"])
   end

```

Then, I do: @code\_warntype(f), and saw this:  
t::Any  
Tf::Any  
fric::Any

My question is why?

---

_[View the full topic](https://discourse.julialang.org/t/dict-issue/42338)._
