Skip to content

Commit b07f6a4

Browse files
famouswizardalv-around
authored andcommitted
chore: fix macro usage order to prevent potential compilation errors (#1372)
1 parent 8f1bac4 commit b07f6a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/u256/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
#![cfg_attr(not(feature = "std"), no_std)]
33
#![allow(clippy::needless_range_loop)]
44

5-
openvm::entry!(main);
65
use core::array;
7-
86
use openvm_bigint_guest::U256;
97

8+
openvm::entry!(main);
9+
1010
const N: usize = 16;
1111
type Matrix = [[U256; N]; N];
1212

0 commit comments

Comments
 (0)