Skip to content

Instantly share code, notes, and snippets.

View theenglishway's full-sized avatar

theenglishway

View GitHub Profile
@theenglishway
theenglishway / guard_test.ex
Created November 15, 2022 19:18
Guard failure in Elixir 1.14
defmodule NestedStruct do
defstruct [:inner_struct]
end
defmodule SimpleStruct do
defstruct [:field]
end
defmodule GuardTest do
@moduledoc """