//! Rs lint passes — all registered via the rustc driver callbacks.
/// Register Rs lint passes in the lint store.
///
/// Attribute-triggered lints (deterministic, bounded_async, step, addressed)
/// are always registered — they only fire on annotated code.
///
/// Edition restriction lints (no_heap, no_dyn, no_panic, no_nondet) are
/// only registered when `--rs-edition` is passed.
Homonyms
cyb/evy/forks/naga/src/back/hlsl/mod.rs
struct Baz { m: mat3x2, } struct Baz { float2 m_0; float2 m_1; float2 m_2; }; float3x2 GetMatmOnBaz(Baz obj) { return float3x2(obj.m_0, obj.m_1, obj.m_2); }