On Thursday, 9 January 2025 at 22:01:59 UTC, WhatMeWorry wrote:
> this(Location locaction, uint f) {
> this.location = location;
> this.f = f;
> }
You misspelled the parameter name 'locaction', so your assignment
in the constructor is a no-op:
```
this.location = this.location
```