You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following fails at the FunC stage, but should be rejected by the typechecker
message Hello {
name: String
}
contract Test {
receive() {
message(MessageParameters{
to: sender(),
value: 0,
mode: SendRemainingValue,
body: Hello.toCell(), // `toCell` is mistakenly used as a static method here
});
}
}