Cradicle Explorer
adl
Info
Issues
Patches
Wallets
Source
Source
.cargo
.circleci
.github
.resources
adl-cli
compiler
errors
interpreter
test-framework
tests
expectations
tests
cli
compiler
address
array
assert
async_blocks
boolean
bugs
console
const_generics
const_prop
constants
constructor
core
dead_code
definition
error_reporting
examples
expression
field
finalize
function
futures
group
input
integers
mappings
modules
multibyte
network
operations
option
records
return
scalar
signature
statements
storage
strings
structs
cyclic_structs_four_fail.adl
cyclic_structs_one_fail.adl
cyclic_structs_three_fail.adl
cyclic_structs_two_fail.adl
duplicate_struct_name_fail.adl
duplicate_struct_variable.adl
empty_struct_fail.adl
external_record.adl
external_struct.adl
external_struct_in_async_function.adl
global_shadow_struct_fail.adl
inline.adl
inline_fail.adl
inline_member_fail.adl
inline_member_pass.adl
inline_undefined.adl
member_variable.adl
member_variable_fail.adl
redefine_external_struct.adl
shadow_external_struct_fail.adl
struct_access_fail.adl
struct_contains_record_fail.adl
struct_declaration_out_of_order.adl
struct_function_namespace_conflict_fail.adl
struct_init_out_of_order.adl
struct_with_empty_type.adl
struct_with_visibility_fail.adl
unknown_member_type_fail.adl
symbols
ternary
tests
tuple
type_inference
execution
interpreter-leo
interpreter
parser-expression
parser-module
parser-statement
parser-tokenizer
parser
passes
README.md
utils
.codecov.yml
.gitattributes
.gitignore
.gitmodules
.rusty-hook.toml
CONTRIBUTING.md
Cargo.lock
Cargo.toml
DEVELOPMENT.md
LICENSE.md
README.md
build.rs
rust-toolchain.toml
rustfmt.toml
/
tests
/
tests
/
compiler
/
structs
/ cyclic_structs_one_fail.adl
cyclic_structs_one_fail.adl
1
2
program test.alpha {
3
struct Foo {
4
foo: Foo,
5
}
6
}