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.
39 lines
610 B
39 lines
610 B
5 years ago
|
/*
|
||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
|
||
|
#include <memory>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
#import <Foundation/NSObject.h>
|
||
|
|
||
|
struct Simple {
|
||
|
int f;
|
||
|
};
|
||
|
|
||
|
@interface PulseTest : NSObject
|
||
|
|
||
|
- (int)deref_deleted_in_objc_method_bad;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation PulseTest
|
||
|
|
||
|
- (int)deref_deleted_in_objc_method_bad {
|
||
|
auto* s = new Simple{1};
|
||
|
delete s;
|
||
|
Simple tmp = *s;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|
||
|
void deref_deleted_bad() {
|
||
|
auto* s = new Simple{1};
|
||
|
delete s;
|
||
|
Simple tmp = *s;
|
||
|
}
|