You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
542 B
13 lines
542 B
// RUN: mlir-opt -test-type-interfaces -allow-unregistered-dialect -verify-diagnostics %s
|
|
|
|
// expected-remark@below {{'!test.test_type' - TestA}}
|
|
// expected-remark@below {{'!test.test_type' - TestB}}
|
|
// expected-remark@below {{'!test.test_type' - TestC}}
|
|
// expected-remark@below {{'!test.test_type' - TestD}}
|
|
// expected-remark@below {{'!test.test_type' - TestRet}}
|
|
// expected-remark@below {{'!test.test_type' - TestE}}
|
|
%foo0 = "foo.test"() : () -> (!test.test_type)
|
|
|
|
// Type without the test interface.
|
|
%foo1 = "foo.test"() : () -> (i32)
|