We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Take:
#include <core.p4> control c(in bit t) { table tt { actions = {} } apply { if (tt.apply() == tt.apply()) { } } } control ct(in bit t); package pt(ct c); pt(c()) main;
With p4test we get:
t-1.p4(5): [--Werror=not-found] error: tt: declaration not found table tt { ^^
There is no hint that the problem is related to the tt.apply() == tt.apply() expression. But points you to the declaration of the table tt.
tt.apply() == tt.apply()
The text was updated successfully, but these errors were encountered:
mihaibudiu
Successfully merging a pull request may close this issue.
Take:
With p4test we get:
There is no hint that the problem is related to the
tt.apply() == tt.apply()
expression. But points you to the declaration of the table tt.The text was updated successfully, but these errors were encountered: