NomicFoundation / slang

Solidity compiler tooling by @NomicFoundation

Home Page:https://nomicfoundation.github.io/slang/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

string literals can include tabs until `0.7.0`

OmarTawfik opened this issue · comments

This was legal till 0.7.0:

contract Foo {
  string public bar = "tab:	";
  string public baz = 'tab:	';
}