AngularJS: ng-bind-template inside ng-repeat

HTML

<script src="http://code.angularjs.org/1.0.0rc3/angular-1.0.0rc3.js"></script>
<div ng-app ng-controller="Ctrl">
    Salutation: <input type="text" ng-model="salutation" ng-model-instant><br>
    Name: <input type="text" ng-model="name" ng-model-instant><br>
    <table>
        <tbody>
            <tr ng-bind="name" ng-repeat="key in counter">
                <td><span ng-bind-template="{{key}}: {{salutation}} {{name}}!"></span></td>
            </tr>
        </tbody>
    </table>
</div>

JavaScript

function Ctrl($scope) {
    $scope.salutation = 'Hello';
    $scope.name = 'World';
    $scope.counter = [];
}