fix failing test

This commit is contained in:
collin 2020-12-08 10:47:07 -05:00
parent c351c300a2
commit b7e5cd13df

View File

@ -5,5 +5,5 @@ circuit Foo {
}
function main() {
let err = Foo::echo(1u32); // Correct, echo is a static function and must be accessed using `::`
let err = Foo.echo(1u32); // Invalid, echo is a static function and must be accessed using `::`
}