The following code causes the compiler to emit a warning: ``` elixir assert_receive {:ok, num} # line 10 assert ^num = 13 # line 11 ``` ``` test/exunit_export_test.exs:11: warning: variable num@1 exported from 'receive' (line 10) ``` Example repo with 2 tags: `warning` and `no-warning` – https://github.com/alco/ex_unit-warning-exported-var