Consistent terminology for attached/bound functions (file rename)

This commit is contained in:
Kamil Śliwak
2022-12-07 19:31:44 +01:00
parent 64a4f32bc2
commit 71506bd3b3
48 changed files with 0 additions and 0 deletions
@@ -0,0 +1,11 @@
library L {}
library M {}
contract C {
using L for M;
using M for L;
using L for L;
}
// ----
// TypeError 1130: (55-56): Invalid use of a library name.
// TypeError 1130: (74-75): Invalid use of a library name.
// TypeError 1130: (93-94): Invalid use of a library name.