-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8721283
commit 2cdf9c5
Showing
17 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
24 changes: 24 additions & 0 deletions
24
test/libsolidity/syntaxTests/experimental/inference/import_and_call_stdlib_function.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
pragma experimental solidity; | ||
|
||
import { identity as id } from std.stub; | ||
|
||
contract C | ||
{ | ||
fallback() external | ||
{ | ||
id(); | ||
} | ||
} | ||
|
||
// ==== | ||
// EVMVersion: >=constantinople | ||
// ---- | ||
// Warning 2264: (std.stub:63-92): Experimental features are turned on. Do not use experimental features on live deployments. | ||
// Warning 2264: (0-29): Experimental features are turned on. Do not use experimental features on live deployments. | ||
// Info 4164: (std.stub:94-117): Inferred type: () -> () | ||
// Info 4164: (std.stub:111-113): Inferred type: () | ||
// Info 4164: (40-48): Inferred type: () -> () | ||
// Info 4164: (90-135): Inferred type: () -> () | ||
// Info 4164: (98-100): Inferred type: () | ||
// Info 4164: (124-128): Inferred type: () | ||
// Info 4164: (124-126): Inferred type: () -> () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters