diff options
author | Alexei Sholik <alcosholik@gmail.com> | 2014-08-15 03:19:44 +0300 |
---|---|---|
committer | Alexei Sholik <alcosholik@gmail.com> | 2014-08-15 03:19:44 +0300 |
commit | 423b7668dce62f50b29cc38f2faf31619f021cee (patch) | |
tree | 63751e2cdd0655dd815050afa1846f9169a1ebd6 /tests/examplefiles/example_elixir.ex | |
parent | 318f724a204eacd8b3fef8300e23468c71dc5ed7 (diff) | |
download | pygments-423b7668dce62f50b29cc38f2faf31619f021cee.tar.gz |
[Elixir] No longer balance sigil terminators
Diffstat (limited to 'tests/examplefiles/example_elixir.ex')
-rw-r--r-- | tests/examplefiles/example_elixir.ex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/examplefiles/example_elixir.ex b/tests/examplefiles/example_elixir.ex index 09870443..775b30cc 100644 --- a/tests/examplefiles/example_elixir.ex +++ b/tests/examplefiles/example_elixir.ex @@ -45,6 +45,8 @@ atom" ~w(hello #{ ["has" <> "123", '\c\d', "\123 interpol" | []] } world)s ~W(hello #{no "123" \c\d \123 interpol} world)s +~s{Escapes terminators \{ and \}, but no {balancing} # outside of sigil here } + ~S"No escapes \s\t\n and no #{interpolation}" :"atoms work #{"to" <> "o"}" |