Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ processed 1 task

task 0, lines 1-264:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: TOO_MANY_LOCALS,
sub_status: None,
location: undefined,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
foo(p1: u8) {
let x1 : u8;
let x2 : u8;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
foo() {
let x1 : u8;
let x2 : u8;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ processed 1 task

task 0, lines 1-11:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: NUMBER_OF_TYPE_ARGUMENTS_MISMATCH,
sub_status: None,
location: undefined,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
struct S { b: bool }

foo() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public fun plus256(a: u256): u256 { a + 1 }


//# publish
module 0x42::m_test {
module 0x43::m_test {
use 0x42::m;
public fun test8() { m::plus8(1u8); }
public fun test16() { m::plus16(1u16); }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@ processed 3 tasks

task 0, lines 1-51:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}

task 1, lines 53-70:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M2'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000007::M2'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M2,
location: 0x7::M2,
indices: [],
offsets: [],
}

task 2, lines 72-122:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M3'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000008::M3'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M3,
location: 0x8::M3,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }

a<T>() {
Expand Down Expand Up @@ -51,7 +51,7 @@ module 0x1.M {
// loop: c#T1 --> c#T2 --> d#T --> b#T2 --S<T2>--> c#T1

//# publish
module 0x1.M2 {
module 0x7.M2 {
struct S<T> { b: bool }

f<T>() {
Expand All @@ -71,7 +71,7 @@ module 0x1.M2 {

//# publish

module 0x1.M3 {
module 0x8.M3 {
struct S<T> { b: bool }

a<T>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@ processed 3 tasks

task 0, lines 1-51:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}

task 1, lines 53-70:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M2'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000007::M2'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M2,
location: 0x7::M2,
indices: [],
offsets: [],
}

task 2, lines 72-122:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M3'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000008::M3'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M3,
location: 0x8::M3,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
enum S<T> { V{ b: bool } }

a<T>() {
Expand Down Expand Up @@ -51,7 +51,7 @@ module 0x1.M {
// loop: c#T1 --> c#T2 --> d#T --> b#T2 --S<T2>--> c#T1

//# publish
module 0x1.M2 {
module 0x7.M2 {
enum S<T> { V { b: bool } }

f<T>() {
Expand All @@ -71,7 +71,7 @@ module 0x1.M2 {

//# publish

module 0x1.M3 {
module 0x8.M3 {
enum S<T> { V{ b: bool } }

a<T>() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
f<T>() {
label b0:
Self.g<T>();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }

f<T>() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
enum S<T> { V{ b: bool } }

f<T>() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
f<T1, T2, T3>() {
label b0:
Self.g<T2, T3, T1>();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }

f<T1, T2, T3>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-23:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }

f<T1, T2, T3>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-23:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
enum S<T> { V{ b: bool } }

f<T1, T2, T3>() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
f<T1, T2>() {
label b0:
Self.g<T2, T1>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-17:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }

f<T1, T2>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-17:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
enum S<T> { V { b: bool } }

f<T1, T2>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-20:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Not good: infinitely many types/instances.
// f<T>, g<S<T>>, f<S<T>>, g<S<S<T>>>, ...

module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }

f<T>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-20:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Not good: infinitely many types/instances.
// f<T>, g<S<T>>, f<S<T>>, g<S<S<T>>>, ...

module 0x1.M {
module 0x6.M {
enum S<T> { V { b: bool } }

f<T>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-11:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//# publish
module 0x1.M {
module 0x6.M {
enum S<T> { V { b: bool }, R { } }

foo<T>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-13:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//# publish

module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }
struct R<T1, T2> { b: bool }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ processed 1 task

task 0, lines 1-13:
//# publish
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000001::M'. Got VMError: {
Error: Unable to publish module '0000000000000000000000000000000000000000000000000000000000000006::M'. Got VMError: {
major_status: LOOP_IN_INSTANTIATION_GRAPH,
sub_status: None,
location: 0x1::M,
location: 0x6::M,
indices: [],
offsets: [],
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//# publish

module 0x1.M {
module 0x6.M {
struct S<T> { b: bool }
enum R<T1, T2> { V{ b: bool } }

Expand Down
Loading
Loading