Skip to content

Commit

Permalink
Return type test
Browse files Browse the repository at this point in the history
  • Loading branch information
Virgil Serbanuta authored and Virgil Serbanuta committed Aug 20, 2024
1 parent 05255dd commit e60420d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tests/execution/function-return-type.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#![no_std]

#[allow(unused_imports)]
use multiversx_sc::imports::*;

#[multiversx_sc::contract]
pub trait Empty {
#[init]
fn init(&self) {
}

#[upgrade]
fn upgrade(&self) {}

fn with_return_type(&self) -> BigUint {}

}

0 comments on commit e60420d

Please sign in to comment.