this repo has no description

Update syntax

+3 -3
+1 -1
test-package-compiler/cases/erlang_bug_752/src/two.gleam
··· 1 - import one.{One} 1 + import one.{type One} 2 2 3 3 pub type Two(b) { 4 4 Two(thing: One(Int))
+1 -1
test-package-compiler/cases/import_shadowed_name_warning/src/two.gleam
··· 2 2 3 3 // No warning should be emitted about this imported type. The compiler does not 4 4 // confuse it for the value constructor defined below. 5 - import one.{Port} 5 + import one.{type Port} 6 6 7 7 type Shadowing { 8 8 // This value constructor has the same name as the imported type.
+1 -1
test-package-compiler/cases/variable_or_module/src/main.gleam
··· 1 1 // https://github.com/gleam-lang/gleam/issues/807 2 - import power.{Power} 2 + import power.{type Power} 3 3 4 4 pub fn module_function(power: Power) { 5 5 // Here we are referring to the `power` module's function, not a field on the