Test accessing attribute on dataclass constructor call result.
()
| 2698 | |
| 2699 | @cudaq.kernel |
| 2700 | def test_attribute_on_call() -> int: |
| 2701 | """Test accessing attribute on dataclass constructor call result.""" |
| 2702 | return M(6, 9).i |
| 2703 | |
| 2704 | @cudaq.kernel |
| 2705 | def nested_kernel() -> M: |