Added error message for virtual (library) functions; test case

This commit is contained in:
hrkrshnn
2020-04-03 15:09:57 +05:30
parent 3beaae6822
commit 042ccd24ab
2 changed files with 7 additions and 0 deletions
@@ -0,0 +1,5 @@
library L {
function f() internal pure virtual returns (uint) { return 0; }
}
// ----
// TypeError: (16-79): Library functions cannot be "virtual".