Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tortar authored Sep 23, 2024
1 parent 6489193 commit 1ee5629
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ using PrecompileTools
end)
)
_hybrid(:(struct B{X} <: AbstractB{X}
x::X
y::Int
const z
B{X}(x, y) where X = new{X}(x, y, 1)
B{X}(x, y, z) where X = new{X}(x, y, z)
function B(x::X, y, z) where X
return new{X}(x, y, z)
end
end)
x::X
y::Int
const z
B{X}(x, y) where X = new{X}(x, y, 1)
B{X}(x, y, z) where X = new{X}(x, y, z)
function B(x::X, y, z) where X
return new{X}(x, y, z)
end
end)
)
end
end
end

0 comments on commit 1ee5629

Please sign in to comment.