// RUN: mlir-opt %s -split-input-file -verify-diagnostics // ----- // Unrecognized token: missing storage type maximum // expected-error@+1 {{expected ':'}} !qalias = type !quant.any:f32> // ----- // Unrecognized token: missing closing angle bracket // expected-error@+1 {{expected '>'}} !qalias = type !quant<"any"> // ----- // Unrecognized token: missing type colon // expected-error@+1 {{expected '>'}} !qalias = type !quant.anyf32> // ----- // Unrecognized storage type: illegal prefix // expected-error@+1 {{illegal storage type prefix}} !qalias = type !quant.any:f32> // ----- // Unrecognized storage type: no width // expected-error@+1 {{illegal storage type prefix}} !qalias = type !quant.any:f32> // ----- // Unrecognized storage type: storage size > 32 // expected-error@+1 {{illegal storage type size: 33}} !qalias = type !quant.any // ----- // Unrecognized storage type: storage size < 0 // expected-error@+1 {{illegal storage type size: 1024}} !qalias = type !quant.any:f32> // ----- // Unrecognized storage type: storage size == 0 // expected-error@+1 {{invalid integer width}} !qalias = type !quant.any:f32> // ----- // Illegal storage min/max: max - min < 0 // expected-error@+1 {{illegal storage min and storage max: (2:1)}} !qalias = type !quant.any:f32> // ----- // Illegal storage min/max: max - min == 0 // expected-error@+1 {{illegal storage min and storage max: (1:1)}} !qalias = type !quant.any:f32> // ----- // Illegal storage min/max: max > defaultMax // expected-error@+1 {{illegal storage type maximum: 9}} !qalias = type !quant.any:f32> // ----- // Illegal storage min/max: min < defaultMin // expected-error@+1 {{illegal storage type minimum: -9}} !qalias = type !quant.any:f32>