Merge remote-tracking branch 'origin/develop' into develop_060

This commit is contained in:
chriseth
2019-10-05 13:08:44 +02:00
7 changed files with 15 additions and 3 deletions
+2
View File
@@ -1 +1,3 @@
contract C { enum E { A, B } }
// ----
@@ -1 +1,3 @@
contract C { event E(); }
// ----
@@ -1 +1,3 @@
contract C { modifier M { _; } }
// ----
+2
View File
@@ -1 +1,3 @@
contract C {}
// ----
@@ -1 +1,3 @@
library L {} contract C { using L for uint; }
// ----