diff options
Diffstat (limited to 'third_party/git/t/t4018/elixir-nested-module')
-rw-r--r-- | third_party/git/t/t4018/elixir-nested-module | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/git/t/t4018/elixir-nested-module b/third_party/git/t/t4018/elixir-nested-module new file mode 100644 index 000000000000..771ebc5c42a9 --- /dev/null +++ b/third_party/git/t/t4018/elixir-nested-module @@ -0,0 +1,9 @@ +defmodule MyApp.RIGHT do + @moduledoc """ + Foo bar + """ + + def ChangeMe(a) where is_map(a) do + a + end +end |