···23// No warning should be emitted about this imported type. The compiler does not
4// confuse it for the value constructor defined below.
5-import one.{Port}
67type Shadowing {
8 // This value constructor has the same name as the imported type.
···23// No warning should be emitted about this imported type. The compiler does not
4// confuse it for the value constructor defined below.
5+import one.{type Port}
67type Shadowing {
8 // This value constructor has the same name as the imported type.
···1// https://github.com/gleam-lang/gleam/issues/807
2-import power.{Power}
34pub fn module_function(power: Power) {
5 // Here we are referring to the `power` module's function, not a field on the
···1// https://github.com/gleam-lang/gleam/issues/807
2+import power.{type Power}
34pub fn module_function(power: Power) {
5 // Here we are referring to the `power` module's function, not a field on the