Disable unused type warnings for type used inside of records (#492)
* Do not show warning for types used in records * Exclude .vscode in .gitignore * Update CHANGELOG.md
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
contract Test =
|
||||
type option_int = option(int)
|
||||
record option_point = {x: int, y: option_int}
|
||||
|
||||
entrypoint test_option_record(a: option_point) = a
|
||||
Reference in New Issue
Block a user