mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Added error message for virtual (library) functions; test case
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
library L {
|
||||
function f() internal pure virtual returns (uint) { return 0; }
|
||||
}
|
||||
// ----
|
||||
// TypeError: (16-79): Library functions cannot be "virtual".
|
||||
Reference in New Issue
Block a user